This commit is contained in:
2025-05-23 18:05:45 +08:00
parent e9f040c3e6
commit a190900181
7 changed files with 171 additions and 27 deletions

View File

@@ -11,6 +11,14 @@ const compat = new FlatCompat({
const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
{
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"prefer-const": "off",
"react-hooks/exhaustive-deps": "off"
}
}
];
export default eslintConfig;