feat: Implement strict type enforcement

This commit is contained in:
gpt-engineer-app[bot]
2025-10-16 13:56:32 +00:00
parent 95679c1067
commit 3bcd9e03fa
10 changed files with 379 additions and 80 deletions

View File

@@ -21,6 +21,11 @@ export default tseslint.config(
...reactHooks.configs.recommended.rules,
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-unsafe-assignment": "warn",
"@typescript-eslint/no-unsafe-member-access": "warn",
"@typescript-eslint/no-unsafe-call": "warn",
"@typescript-eslint/no-unsafe-return": "warn",
},
},
);