mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
c467bf9382
Replace deprecated babel-eslint with @babel/eslint-parser Replace deprecated eslint-loader with eslint-webpack-plugin Update other plugins, resolving several opened security reports. Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
14 lines
344 B
JSON
14 lines
344 B
JSON
{
|
|
"extends": "airbnb-base",
|
|
"parser": "@babel/eslint-parser",
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"globals": {
|
|
"Routing": true
|
|
},
|
|
"rules": {
|
|
"import/no-extraneous-dependencies": ["error", {"devDependencies": true, "optionalDependencies": true, "peerDependencies": true}]
|
|
}
|
|
}
|