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 @@ -61,7 +61,7 @@
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"esbuild": "^0.16.7",
"eslint": "^8.9.0",
"eslint": "^9.26.0",
Comment on lines 61 to +64
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Align TypeScript ESLint packages with ESLint 9

ESLint was bumped to v9, but the repo still pins @typescript-eslint/eslint-plugin and @typescript-eslint/parser at v5.12.0. Those v5 packages only declare peer support for ESLint ≤8, so with npm 7+ a fresh npm install will hit an ERESOLVE peer-dependency conflict (or lint can fail at runtime due to unsupported ESLint APIs). This change can therefore break installs/CI linting unless the TypeScript ESLint packages are upgraded alongside ESLint 9 or ESLint is kept at 8.

Useful? React with 👍 / 👎.

"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
Expand Down
Loading