This commit is contained in:
Logan Cusano
2025-05-25 18:24:29 -04:00
parent 0b476d578f
commit b889210f2b
18 changed files with 2823 additions and 122 deletions

View File

@@ -10,7 +10,13 @@ const compat = new FlatCompat({
});
const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
...compat.config({
extends: ['next'],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"react-hooks/exhaustive-deps": "off"
},
}),
];
export default eslintConfig;