chore(deps-dev): bump eslint from 8.57.1 to 10.3.0#448
chore(deps-dev): bump eslint from 8.57.1 to 10.3.0#448dependabot[bot] wants to merge 1 commit intomasterfrom
Conversation
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.1 to 10.3.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v8.57.1...v10.3.0) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.3.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 3 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 2e27cd4. Configure here.
| "@babel/core": "^7.27.1", | ||
| "@babel/preset-env": "^7.27.1", | ||
| "eslint": "^8.56.0", | ||
| "eslint": "^10.3.0", |
There was a problem hiding this comment.
ESLint 10 removed the valid-jsdoc rule
High Severity
Bumping eslint to v10 breaks the existing eslint.config.js because the valid-jsdoc rule was removed in ESLint 9. The config file still references valid-jsdoc with error-level severity, so running npm run lint will fail with an unknown rule error. The valid-jsdoc rule needs to be removed or replaced with eslint-plugin-jsdoc.
Reviewed by Cursor Bugbot for commit 2e27cd4. Configure here.
| "@babel/core": "^7.27.1", | ||
| "@babel/preset-env": "^7.27.1", | ||
| "eslint": "^8.56.0", | ||
| "eslint": "^10.3.0", |
There was a problem hiding this comment.
Incompatible peer dependency for eslint-config-airbnb-base
Medium Severity
eslint-config-airbnb-base@15.0.0 declares a peer dependency of eslint: ^7.32.0 || ^8.2.0, which does not include ESLint 10. This causes peer dependency conflicts during npm install and the package itself is not compatible with ESLint 10's flat config system. The config also isn't imported in eslint.config.js, making it a dead dependency.
Reviewed by Cursor Bugbot for commit 2e27cd4. Configure here.
| "@babel/core": "^7.27.1", | ||
| "@babel/preset-env": "^7.27.1", | ||
| "eslint": "^8.56.0", | ||
| "eslint": "^10.3.0", |
There was a problem hiding this comment.
Incompatible eslint-plugin-import peer dependency with ESLint 10
Medium Severity
eslint-plugin-import@2.32.0 in the lock file declares a peer dependency of eslint: ^2 || ^3 || ... || ^9, which does not include ESLint 10. This version bump introduces a peer dependency conflict that will cause npm install errors and potential runtime failures. The import/ rule namespace is referenced in eslint.config.js, so this plugin is actively needed.
Reviewed by Cursor Bugbot for commit 2e27cd4. Configure here.


Bumps eslint from 8.57.1 to 10.3.0.
Release notes
Sourced from eslint's releases.
... (truncated)
Commits
788920410.3.05b69b4fBuild: changelog update for 10.3.0d32235eci: use pnpm ineslint-flat-config-utilstype integration test (#20826)b6ae5cffix: handle unavailable require cache (#20812)3ffb14echore: clean up typos in comments and JSDoc (#20821)6fb3685fix: rule suggestions cause continuation in class body (#20787)22eb58achore: add missing continue-on-error to ecosystem-tests.yml (#20818)88bf002ci: bump pnpm/action-setup from 6.0.1 to 6.0.3 (#20815)379571afeat: add suggestions for no-unused-private-class-members (#20773)97c8c33chore: update ilshidur/action-discord action to v0.4.0 (#20811)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Note
Medium Risk
Primarily a dev-tooling upgrade, but ESLint 10 introduces a new dependency tree and a higher Node.js engine requirement, which may break linting/CI in environments not on Node 20+.
Overview
Upgrades
eslintdevDependency from8.57.1to10.3.0inpackage.jsonand refreshespackage-lock.jsonaccordingly.The lockfile update pulls in ESLint 10’s new supporting packages (e.g.,
@eslint/*,@humanfs/*) and removes/replaces older transitive deps, reflecting ESLint’s updated Node engine constraints.Reviewed by Cursor Bugbot for commit 2e27cd4. Bugbot is set up for automated code reviews on this repo. Configure here.