You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
460 B
24 lines
460 B
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"mocha": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"eqeqeq": 2,
|
|
"indent": ["error", "tab"],
|
|
"no-var": 2,
|
|
"prefer-const": 2,
|
|
"no-unused-vars": [2, {"vars": "all", "args": "none", "varsIgnorePattern": "[iI]gnored"}],
|
|
"no-alert": 2,
|
|
"no-trailing-spaces": 2,
|
|
"radix": 2,
|
|
}
|
|
}
|