21 lines
396 B
JSON
21 lines
396 B
JSON
|
{
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"semistandard",
|
||
|
"plugin:@typescript-eslint/recommended"
|
||
|
],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 12,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"rules": {
|
||
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
||
|
"@typescript-eslint/no-explicit-any": "off"
|
||
|
}
|
||
|
}
|