c145413d1a
Change airbnb eslint config package to `eslint-config-airbnb-base` and update plugins. Change `airbnb` to `airbnb-base` for .eslintrc `extends` value. Added changelog entry Made sure all plugins and envs are set Corrected new failing specs
19 lines
283 B
Text
19 lines
283 B
Text
{
|
|
"env": {
|
|
"jquery": true,
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": "airbnb-base",
|
|
"globals": {
|
|
"_": false,
|
|
"gl": false,
|
|
"gon": false
|
|
},
|
|
"plugins": [
|
|
"filenames"
|
|
],
|
|
"rules": {
|
|
"filenames/match-regex": [2, "^[a-z0-9_]+(.js)?$"]
|
|
}
|
|
}
|