36 lines
886 B
JSON
36 lines
886 B
JSON
|
|
{
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 2022,
|
||
|
|
"sourceType": "module",
|
||
|
|
"project": "./tsconfig.json"
|
||
|
|
},
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking"
|
||
|
|
],
|
||
|
|
"plugins": ["@typescript-eslint"],
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
||
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
||
|
|
"@typescript-eslint/no-unused-vars": [
|
||
|
|
"error",
|
||
|
|
{
|
||
|
|
"argsIgnorePattern": "^_",
|
||
|
|
"varsIgnorePattern": "^_"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"no-console": ["error", { "allow": ["warn", "error"] }],
|
||
|
|
"prefer-const": "error",
|
||
|
|
"no-var": "error"
|
||
|
|
},
|
||
|
|
"env": {
|
||
|
|
"node": true,
|
||
|
|
"es2022": true,
|
||
|
|
"jest": true
|
||
|
|
},
|
||
|
|
"ignorePatterns": ["dist/", "node_modules/", "coverage/", "*.js"]
|
||
|
|
}
|
||
|
|
|