17 lines
426 B
JSON
17 lines
426 B
JSON
|
|
{
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended"
|
||
|
|
],
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 2022,
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/explicit-function-return-type": "warn",
|
||
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
||
|
|
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
|
||
|
|
}
|
||
|
|
}
|