mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
21 lines
434 B
JSON
21 lines
434 B
JSON
|
{
|
||
|
"extends": "eslint:recommended",
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"node": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 8
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-console": "off",
|
||
|
"no-unused-vars": "warn",
|
||
|
"no-useless-escape": "warn",
|
||
|
"no-empty": "warn",
|
||
|
"no-var": "error",
|
||
|
"no-mixed-spaces-and-tabs": "warn",
|
||
|
"prefer-const": "warn"
|
||
|
}
|
||
|
}
|