2021-09-17 12:46:05 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"semistandard",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 12,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint"
|
2021-09-20 10:46:29 +00:00
|
|
|
],
|
|
|
|
"rules": {
|
2023-03-28 07:47:53 +00:00
|
|
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
2021-10-27 09:13:48 +00:00
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "off"
|
2021-09-20 10:46:29 +00:00
|
|
|
}
|
2021-09-17 12:46:05 +00:00
|
|
|
}
|