14 lines
233 B
JSON
14 lines
233 B
JSON
{
|
|
"extends": "airbnb/legacy",
|
|
"env": {
|
|
"amd": true,
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 5
|
|
},
|
|
"rules": {
|
|
"no-underscore-dangle": 0 // Backbone uses underscores, we cannot remove them
|
|
}
|
|
}
|