-
Notifications
You must be signed in to change notification settings - Fork 111
Update eslint monorepo to v10 #619
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 |
|---|---|---|
|
|
@@ -25,7 +25,7 @@ | |
| "@trivago/prettier-plugin-sort-imports": "^6.0.2", | ||
| "@typescript-eslint/eslint-plugin": "^8.60.1", | ||
| "@typescript-eslint/parser": "^8.60.1", | ||
| "eslint": "^8.57.1", | ||
| "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 10 drops legacy .eslintrc config format used by this project Upgrading ESLint from v8 to v10 will break all linting in this project. The repository uses Root Cause and ImpactESLint 9 deprecated the legacy config system (
After this upgrade, running Impact: All linting commands ( Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback.
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. 🚩 Node.js engine requirement mismatch with ESLint 10.4.0 The lockfile shows Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| "eslint-config-next": "^15.5.19", | ||
| "eslint-config-prettier": "^10.1.8", | ||
| "eslint-config-standard": "^17.1.0", | ||
|
Comment on lines
+28
to
31
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. 🚩 Peer dependency conflicts with eslint-config-standard and eslint-config-next Beyond the
pnpm's Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
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.
🚩 No other package.json or config changes accompany this major version bump
This PR only changes the eslint version specifier in the root
package.json. A major version bump from v8 to v10 (skipping v9) typically requires accompanying changes: migrating.eslintrctoeslint.config.*, updating incompatible shared configs/plugins, and potentially adjusting lint scripts that use deprecated CLI flags (e.g.eslint -f unixinpackages/livekit-rtc/package.json). The absence of these changes suggests this may have been an automated dependency update (e.g. Renovate —renovate.jsonexists in the repo) that wasn't reviewed for breaking changes.Was this helpful? React with 👍 or 👎 to provide feedback.