-
Notifications
You must be signed in to change notification settings - Fork 3
chore(deps): update dependency eslint to v10 #1571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,7 +56,7 @@ | |
| "@vitest/ui": "4.0.18", | ||
| "babel-plugin-react-compiler": "1.0.0", | ||
| "concurrently": "9.2.1", | ||
| "eslint": "9.39.2", | ||
| "eslint": "10.0.0", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "eslint-config-next": "16.1.6", | ||
| "eslint-config-prettier": "10.1.8", | ||
| "eslint-plugin-simple-import-sort": "12.1.1", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This upgrade to ESLint 10.0.0 introduces a critical compatibility issue:
Problem:
eslint-plugin-react@7.37.5(transitive dependency fromeslint-config-next@16.1.6) is not compatible with ESLint 10.0.0.Error:
Why it happens: ESLint 10 changed the context API, and
eslint-plugin-react@7.37.5was only tested up to ESLint 9.7.Recommendation: Do not merge this PR. Instead:
eslint-config-nextto release a version compatible with ESLint 10, OR^9.39.2and block ESLint 10 upgrades in Renovate config until ecosystem support catches upSee full review for detailed analysis and options β