18 lines
343 B
JSON
18 lines
343 B
JSON
{
|
|
"root": true,
|
|
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"rules": {
|
|
"no-shadow": "warn",
|
|
"no-magic-numbers": ["warn", { "ignore": [0, 1, -1] }],
|
|
"no-param-reassign": "warn"
|
|
}
|
|
}
|