24 lines
516 B
JSON
24 lines
516 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es2020": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {
|
|
"no-console": "warn",
|
|
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
|
|
"no-undef": "warn",
|
|
"no-constant-condition": ["warn", { "checkLoops": false }]
|
|
},
|
|
"ignorePatterns": ["dist/", "coverage/", "node_modules/"]
|
|
}
|