Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ const eslintConfig = [...nextCoreWebVitals, ...nextTypescript, {
"caughtErrorsIgnorePattern": "^_"
}],
"@typescript-eslint/no-explicit-any": "warn",
// Temporarily enable strict React Hooks rules from v7 to see violations
"react-hooks/immutability": "error",
"react-hooks/purity": "error",
"react-hooks/set-state-in-effect": "error",
// Keep strict hooks checks informational while upgrading lint dependencies
"react-hooks/immutability": "warn",
"react-hooks/purity": "warn",
"react-hooks/set-state-in-effect": "warn",
"react-hooks/preserve-manual-memoization": "warn",
},
}, {
ignores: [
Expand Down
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@types/react-dom": "^19",
"cypress": "^15.14.0",
"eslint": "^10",
"eslint-config-next": "^16.2.3",
"eslint-config-next": "^16.2.4",
"fast-check": "^4.7.0",
"jest": "^30.3.0",
"jest-axe": "^10.0.0",
Expand Down
Loading