-
Notifications
You must be signed in to change notification settings - Fork 10
chore(deps): update eslint monorepo to v10 (major) #204
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 |
|---|---|---|
|
|
@@ -18,11 +18,11 @@ | |
| "react-dom": "^19.2.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "^9.39.1", | ||
| "@eslint/js": "^10.0.0", | ||
| "@types/react": "^19.2.7", | ||
| "@types/react-dom": "^19.2.3", | ||
| "@vitejs/plugin-react": "^5.1.1", | ||
| "eslint": "^9.39.1", | ||
| "eslint": "^10.0.0", | ||
|
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. Peer dependency conflict with eslint-plugin-react-hooks upgradeMedium Severity Upgrading Reviewed by Cursor Bugbot for commit 71ef31e. Configure here. |
||
| "eslint-plugin-react-hooks": "^7.0.1", | ||
| "eslint-plugin-react-refresh": "^0.5.0", | ||
| "globals": "^16.5.0", | ||
|
|
||


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.
Lockfile not updated after package.json version bump
Medium Severity
The
package.jsonbumpseslintand@eslint/jsto^10.0.0, but thepackage-lock.jsonstill references^9.39.1for both packages. This mismatch meansnpm ciwill fail because the lockfile is out of sync withpackage.json. The lockfile needs to be regenerated to reflect the updated dependency ranges.Reviewed by Cursor Bugbot for commit bbeb576. Configure here.