chore(frontend): relax lint and ts constraints

This commit is contained in:
2026-04-24 22:24:18 +03:30
parent 987d2e2b59
commit 71103b9d8e
2 changed files with 9 additions and 2 deletions

View File

@@ -19,5 +19,12 @@ export default defineConfig([
ecmaVersion: 2020, ecmaVersion: 2020,
globals: globals.browser, globals: globals.browser,
}, },
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-empty-object-type": "off",
"react-refresh/only-export-components": "off",
"react-hooks/set-state-in-effect": "off",
},
}, },
]) ])

View File

@@ -18,8 +18,8 @@
/* Linting */ /* Linting */
"strict": true, "strict": true,
"noUnusedLocals": true, "noUnusedLocals": false,
"noUnusedParameters": true, "noUnusedParameters": false,
"erasableSyntaxOnly": true, "erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true "noUncheckedSideEffectImports": true