Skip to content
Open
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@typescript-eslint/eslint-plugin": "8.41.0",
"@typescript-eslint/parser": "8.41.0",
"autoprefixer": "^10.4.21",
"eslint": "9.34.0",
"eslint": "10.0.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESLint 10 drops .eslintrc.json support, breaking lint config

High Severity

Bumping eslint to 10.0.0 breaks the project's linting setup. ESLint 10 completely removes support for .eslintrc.* files (the legacy eslintrc format), but this project's configuration lives in .eslintrc.json using extends, plugins, and rules in the legacy format. After this bump, ESLint will silently ignore the entire configuration, effectively running with no custom rules — meaning all lint checks (TypeScript rules, Prettier integration, Next.js rules) stop being enforced.

Fix in Cursor Fix in Web

"eslint-config-next": "15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
Expand Down
Loading