-
Notifications
You must be signed in to change notification settings - Fork 8
chore(deps-dev): bump eslint from 8.57.1 to 9.26.0 #134
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: develop
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 |
|---|---|---|
|
|
@@ -93,7 +93,7 @@ | |
| "@typescript-eslint/parser": "^8.0.0", | ||
| "babel-jest": "^27.4.5", | ||
| "babel-preset-jest": "^27.4.5", | ||
| "eslint": "^8.42.0", | ||
| "eslint": "^9.26.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. ESLint v9 makes Other Locations
🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage. |
||
| "eslint-config-prettier": "^9.0.0", | ||
| "eslint-plugin-prettier": "^5.0.0", | ||
| "jest": "^29.5.0", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -82,7 +82,7 @@ | |
| "@types/react-dom": "^18.3.1", | ||
| "autoprefixer": "^9.8.8", | ||
| "cssnano": "^4.1.11", | ||
| "eslint": "^8", | ||
| "eslint": "^9", | ||
|
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": "14.2.11", | ||
|
Comment on lines
+85
to
86
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. Verify Prompt To Fix With AIThis is a comment left during a code review.
Path: apps/portal/package.json
Line: 85:86
Comment:
Verify `eslint-config-next` 14.2.11 compatibility with ESLint 9. Next.js 15+ officially supports ESLint 9, but v14 may require compatibility flags.
How can I resolve this? If you propose a fix, please make it concise. |
||
| "eslint-config-prettier": "^10.1.8", | ||
| "jest": "^27.5.1", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,7 +47,7 @@ | |
| "nohoist": [] | ||
| }, | ||
| "devDependencies": { | ||
| "eslint": "^8.57.1", | ||
| "eslint": "^9.26.0", | ||
| "eslint-config-prettier": "^8.10.0", | ||
| "eslint-plugin-react": "^7.37.4", | ||
|
Comment on lines
+50
to
52
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. Consider updating Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! Prompt To Fix With AIThis is a comment left during a code review.
Path: package.json
Line: 50:52
Comment:
Consider updating `eslint-config-prettier` from 8.10.0 to 9.0.0+ for official ESLint 9 support.
<sub>Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!</sub>
How can I resolve this? If you propose a fix, please make it concise. |
||
| "husky": "^9.1.7", | ||
|
|
||
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.
Check that ESLint 9 works with the legacy
.eslintrc.jsconfig inapps/api/. ESLint 9 defaults to flat config format - may needESLINT_USE_FLAT_CONFIG=falseor config migration.Prompt To Fix With AI