2023-04-14 03:51:36 +02:00
|
|
|
{
|
2023-09-06 20:55:23 +02:00
|
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:react-hooks/recommended"],
|
2023-04-14 03:51:36 +02:00
|
|
|
"parser": "@typescript-eslint/parser",
|
2023-09-06 20:55:23 +02:00
|
|
|
"plugins": ["react-refresh"],
|
2023-04-14 03:51:36 +02:00
|
|
|
"root": true,
|
|
|
|
"rules": {
|
|
|
|
"no-mixed-spaces-and-tabs": "off",
|
2023-04-30 22:56:03 +02:00
|
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
2023-09-06 20:55:23 +02:00
|
|
|
"@typescript-eslint/no-unused-vars": "off",
|
2023-09-15 18:20:16 +02:00
|
|
|
"react-hooks/exhaustive-deps": "off",
|
|
|
|
"react-hooks/rules-of-hooks": "warn",
|
|
|
|
"@typescript-eslint/ban-ts-comment": "warn"
|
2023-04-14 03:51:36 +02:00
|
|
|
},
|
|
|
|
"env": {
|
2023-09-06 20:55:23 +02:00
|
|
|
"browser": true,
|
|
|
|
"es2020": true
|
|
|
|
},
|
|
|
|
"ignorePatterns": ["node_modules", "dist"]
|
2023-04-14 03:51:36 +02:00
|
|
|
}
|