22 lines
527 B
JSON
22 lines
527 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es2022": true,
|
|
"jest": true
|
|
},
|
|
"extends": ["eslint:recommended"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-var": "error",
|
|
"prefer-const": "warn",
|
|
"no-unused-vars": ["warn", { "argsIgnorePattern": "^(next|req|res)$" }],
|
|
"semi": ["error", "always"],
|
|
"no-console": ["warn", { "allow": ["error"] }],
|
|
"eqeqeq": "error",
|
|
"curly": "error"
|
|
},
|
|
"ignorePatterns": ["public/", "node_modules/", "coverage/"]
|
|
}
|