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 @@ -39,7 +39,7 @@
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.5.0",
"eslint": "^9.26.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

Upgrading eslint to a new major version (v9) introduces breaking changes. The current versions of @typescript-eslint/parser (^4.31.1 on line 41) and @typescript-eslint/eslint-plugin (^4.33.0 on line 40) are not compatible with ESLint v9. This will cause the lint script to fail.

To resolve this, you must also upgrade these packages to a version compatible with ESLint v9. As of now, this requires using v8.x of the @typescript-eslint packages, which are currently in an alpha state.

You will need to update your dependencies to use these alpha versions, for example:

    "@typescript-eslint/eslint-plugin": "^8.0.0-alpha.35",
    "@typescript-eslint/parser": "^8.0.0-alpha.35",

Please be aware of the potential instability of using alpha releases. You may also need to update your ESLint configuration file due to breaking changes in these packages.

Copilot AI Feb 1, 2026

Copy link

Choose a reason for hiding this comment

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

Upgrading ESLint from version 7 to version 9 is a major breaking change that requires updating multiple dependencies and configuration files. The current TypeScript ESLint packages (@typescript-eslint/eslint-plugin@4.33.0 and @typescript-eslint/parser@4.31.1) are incompatible with ESLint 9.x, which requires @typescript-eslint version 8 or later. Additionally, ESLint 9.x uses a new flat config format (eslint.config.js) instead of the old .eslintrc.js format currently used in this project. This upgrade will break the linting process and CI pipeline. To properly upgrade to ESLint 9, you need to also upgrade the TypeScript ESLint packages and migrate the configuration file to the new flat config format.

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

Copilot uses AI. Check for mistakes.
"jest": "^26.6.3",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
Expand Down
Loading