RenaiApp/.eslintrc.json

18 lines
343 B
JSON
Raw Normal View History

{
"root": true,
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"env": {
"es6": true,
"browser": true,
"node": true
2019-06-16 03:39:33 +02:00
},
"parserOptions": {
"ecmaVersion": 2017
2019-06-23 19:02:08 +02:00
},
"rules": {
"no-shadow": "warn",
"no-magic-numbers": ["warn", { "ignore": [0, 1, -1] }],
"no-param-reassign": "warn"
}
}