27 lines
631 B
Plaintext
27 lines
631 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json",
|
|
"ecmaVersion": 2020
|
|
},
|
|
"rules": {
|
|
"prefer-const": 0,
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/no-empty-function": 0,
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"@typescript-eslint/no-unused-vars": [2, {"argsIgnorePattern": "^_"}]
|
|
}
|
|
}
|