16 lines
312 B
JSON
16 lines
312 B
JSON
{
|
|
"extends": "airbnb/legacy",
|
|
"env": {
|
|
"amd": true,
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-underscore-dangle": 0, // Backbone uses underscores, we cannot remove them
|
|
"comma-dangle": ["error", "always-multiline"]
|
|
}
|
|
}
|