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 @@ -1534,7 +1534,7 @@
"@types/vscode": "1.38.0",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"eslint": "7.15.0",
"eslint": "9.26.0",
Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

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

Upgrading to eslint@9 will break the current CI/dev runtime setup: this repo’s GitHub Actions pipeline uses Node 12.x (.github/workflows/build-and-test.yml), and ESLint v9 requires a newer Node version, so npm run compile (which runs npm run lint) will fail. Either bump the CI Node version (and document the required Node version for contributors) or choose an ESLint major compatible with the project’s Node baseline.

Suggested change
"eslint": "9.26.0",
"eslint": "8.57.0",

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

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

eslint@9 is a major upgrade but @typescript-eslint/eslint-plugin / @typescript-eslint/parser are still pinned to 4.10.0. That combination is not supported and will typically fail install and/or linting. Please upgrade the @typescript-eslint packages (and any related config changes) to versions compatible with ESLint 9, or keep ESLint on a compatible major.

Suggested change
"eslint": "9.26.0",
"eslint": "7.32.0",

Copilot uses AI. Check for mistakes.
"jest": "26.6.3",
"ts-jest": "26.4.4",
"typescript": "4.0.2",
Expand Down
Loading