2020-08-23 04:04:58 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
},
|
2023-06-26 14:37:21 +00:00
|
|
|
"plugins": ["@typescript-eslint", "jsx-a11y", "prettier"],
|
2020-08-23 04:04:58 +00:00
|
|
|
"extends": [
|
2021-02-22 02:24:09 +00:00
|
|
|
"eslint:recommended",
|
2022-09-22 15:03:35 +00:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
2023-06-17 19:46:51 +00:00
|
|
|
"plugin:inferno/recommended",
|
|
|
|
"plugin:jsx-a11y/recommended"
|
2020-08-23 04:04:58 +00:00
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"project": "./tsconfig.json",
|
|
|
|
"warnOnUnsupportedTypeScriptVersion": false
|
|
|
|
},
|
|
|
|
"rules": {
|
2021-09-18 14:27:49 +00:00
|
|
|
"@typescript-eslint/ban-ts-comment": 0,
|
2020-08-23 04:04:58 +00:00
|
|
|
"@typescript-eslint/no-explicit-any": 0,
|
2021-02-22 02:24:09 +00:00
|
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
2023-06-14 12:20:40 +00:00
|
|
|
"@typescript-eslint/no-empty-function": 0,
|
2023-07-28 20:07:16 +00:00
|
|
|
"@typescript-eslint/no-non-null-assertion": 0,
|
2024-04-11 17:18:07 +00:00
|
|
|
"@typescript-eslint/no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{ "argsIgnorePattern": "^_" }
|
|
|
|
],
|
2020-08-23 04:04:58 +00:00
|
|
|
"arrow-body-style": 0,
|
|
|
|
"curly": 0,
|
|
|
|
"eol-last": 0,
|
2023-07-28 20:07:16 +00:00
|
|
|
"eqeqeq": "error",
|
2020-08-23 04:04:58 +00:00
|
|
|
"func-style": 0,
|
|
|
|
"import/no-duplicates": 0,
|
|
|
|
"max-statements": 0,
|
|
|
|
"max-params": 0,
|
|
|
|
"new-cap": 0,
|
|
|
|
"no-console": 0,
|
|
|
|
"no-duplicate-imports": 0,
|
|
|
|
"no-extra-parens": 0,
|
|
|
|
"no-return-assign": 0,
|
|
|
|
"no-throw-literal": 0,
|
|
|
|
"no-trailing-spaces": 0,
|
|
|
|
"no-unused-expressions": 0,
|
|
|
|
"no-useless-constructor": 0,
|
|
|
|
"no-useless-escape": 0,
|
|
|
|
"no-var": 0,
|
2023-07-28 20:07:16 +00:00
|
|
|
"prefer-const": "error",
|
2020-08-23 04:04:58 +00:00
|
|
|
"prefer-rest-params": 0,
|
2023-06-26 14:37:21 +00:00
|
|
|
"prettier/prettier": "error",
|
2020-08-23 04:04:58 +00:00
|
|
|
"quote-props": 0,
|
2024-01-03 18:30:32 +00:00
|
|
|
"unicorn/filename-case": 0,
|
|
|
|
"jsx-a11y/media-has-caption": 0
|
2020-08-23 04:04:58 +00:00
|
|
|
}
|
|
|
|
}
|