chore(deps-dev): bump eslint from 8.57.1 to 10.2.1#446
Conversation
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.1 to 10.2.1. - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v8.57.1...v10.2.1) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.2.1 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 2 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 37e5ee3. Configure here.
| "@babel/core": "^7.27.1", | ||
| "@babel/preset-env": "^7.27.1", | ||
| "eslint": "^8.56.0", | ||
| "eslint": "^10.2.1", |
There was a problem hiding this comment.
ESLint 10 removed valid-jsdoc rule, breaking lint
High Severity
Bumping eslint to v10 will break npm run lint because eslint.config.js configures the valid-jsdoc rule at error severity, but this rule was completely removed in ESLint 10. ESLint will throw a configuration error for the unknown rule, making the lint script (and the prerelease script that depends on it) fail.
Reviewed by Cursor Bugbot for commit 37e5ee3. Configure here.
| "@babel/core": "^7.27.1", | ||
| "@babel/preset-env": "^7.27.1", | ||
| "eslint": "^8.56.0", | ||
| "eslint": "^10.2.1", |
There was a problem hiding this comment.
Incompatible eslint-config-airbnb-base peer dependency with ESLint 10
Medium Severity
eslint-config-airbnb-base v15 declares a peer dependency of eslint: "^7.32.0 || ^8.2.0", which does not include ESLint 10. This package is incompatible with ESLint 10 and will cause peer dependency conflicts during installation. Additionally, eslint-plugin-import v2.29.1 is not yet compatible with ESLint 10 either, and the flat config in eslint.config.js references import/prefer-default-export without registering the plugin — which ESLint 10 requires explicitly.
Reviewed by Cursor Bugbot for commit 37e5ee3. Configure here.
|
Superseded by #448. |


Bumps eslint from 8.57.1 to 10.2.1.
Release notes
Sourced from eslint's releases.
... (truncated)
Commits
4d1d8f910.2.13e33105Build: changelog update for 10.2.1ca92ca0docs: reuse markdown-it instance for markdown filter (#20768)7ddfea9chore: update dependency prettier to v3.8.2 (#20770)57d2ee2docs: Enable Eleventy incremental mode for watch (#20767)c1621b9docs: fix typos in code-path-analyzer.js (#20700)fac40e1ci: bump pnpm/action-setup from 5.0.0 to 6.0.0 (#20763)7246f92test: add tests for SuppressionsService.load() error handling (#20734)4f34b1echore: update pnpm/action-setup action to v5 (#20762)1418d52docs: Update READMEDependabot 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
Major ESLint upgrade updates a large portion of the lint toolchain and raises ESLint’s Node engine requirements, which can break CI/dev environments or change lint results.
Overview
Upgrades dev lint tooling by bumping
eslintfrom v8 to v10 inpackage.json.Updates
package-lock.jsonaccordingly, pulling in ESLint v10’s new dependency set (e.g.,@eslint/*packages, updatedespree/eslint-scope/minimatch, and removals of some prior transitive deps) and reflecting the newer Node engine constraints introduced by ESLint v10.Reviewed by Cursor Bugbot for commit 37e5ee3. Bugbot is set up for automated code reviews on this repo. Configure here.