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
16 lines
461 B
JSON
16 lines
461 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"eslint": "eslint --ext .js,.js.es6 .",
|
|
"eslint-fix": "npm run eslint -- --fix",
|
|
"eslint-report": "npm run eslint -- --format html --output-file ./eslint-report.html"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^3.10.1",
|
|
"eslint-config-airbnb-base": "^10.0.1",
|
|
"eslint-plugin-filenames": "^1.1.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"eslint-plugin-jasmine": "^2.1.0",
|
|
"istanbul": "^0.4.5"
|
|
}
|
|
}
|