Conversation
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, enable Autofix in the Cursor dashboard.
| "@eslint/js": "^9.39.2", | ||
| "@types/node": "^25.0.10", | ||
| "eslint": "^9.39.2", | ||
| "eslint": "^10.0.0", |
There was a problem hiding this comment.
typescript-eslint incompatible with eslint 10 peer dependency
High Severity
typescript-eslint v8.54.0 declares eslint: "^8.57.0 || ^9.0.0" as a peer dependency, which does not include eslint 10. ESLint 10 introduces breaking changes like removed deprecated SourceCode methods and rule context methods that typescript-eslint v8 may still use. This will likely break npm run lint at runtime. typescript-eslint needs to be upgraded to a version that supports eslint 10.
Additional Locations (2)
Triggered by project rule: Code Review Guidance
| "@eslint/js": "^9.39.2", | ||
| "@types/node": "^25.0.10", | ||
| "eslint": "^9.39.2", | ||
| "eslint": "^10.0.0", |
There was a problem hiding this comment.
@eslint/js v9 not updated for eslint 10
Medium Severity
@eslint/js remains at ^9.39.2 while eslint was bumped to 10.0.0. ESLint 10 dropped @eslint/js from its own dependencies and updated eslint:recommended rules. Using the v9 @eslint/js configs (imported as eslint.configs.recommended in eslint.config.js) alongside eslint 10's changed internals could produce mismatched rule definitions or configuration errors.
Triggered by project rule: Code Review Guidance
| "@eslint/js": "^9.39.2", | ||
| "@types/node": "^25.0.10", | ||
| "eslint": "^9.39.2", | ||
| "eslint": "^10.0.0", |
There was a problem hiding this comment.
Node 18 engine claim conflicts with eslint 10 requirement
Medium Severity
The project's engines field declares "node": ">=18.0.0", but eslint 10.0.0 requires "node": "^20.19.0 || ^22.13.0 || >=24". Several transitive dependencies (minimatch 10.x, @isaacs/brace-expansion, @isaacs/balanced-match) also require "node": "20 || >=22". Any developer or CI environment running Node 18 will fail when executing npm run lint or installing dev dependencies with strict engine checks.
Additional Locations (1)
Triggered by project rule: Code Review Guidance
Bumps [eslint](https://github.com/eslint/eslint) from 9.39.2 to 10.0.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v9.39.2...v10.0.0) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
75484d6 to
df6dc66
Compare


Bumps eslint from 9.39.2 to 10.0.0.
Release notes
Sourced from eslint's releases.
... (truncated)
Commits
4e6c4ac10.0.0ddd8a22Build: changelog update for 10.0.0bff9091feat: handleArray.fromAsyncinarray-callback-return(#20457)1ece282chore: ignore/docs/v9.xin link checker (#20452)034e139ci: add type integration test for@html-eslint/eslint-plugin(#20345)f3fbc2fchore: set@eslint/jsversion to 10.0.0 to skip releasing it (#20466)e978ddadocs: Update README4cecf83docs: Update READMEc79f0abdocs: Update READMEafc0681chore: remove scopeManager.addGlobals patch for typescript-eslint parser (#20...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
Dev tooling upgrade to ESLint v10 brings breaking changes and a higher Node.js requirement, which may break
npm install/linting in CI or local environments still on Node 18/older 20.x.Overview
Upgrades the project’s linting toolchain by bumping
eslintfrom9.39.2to10.0.2inpackage.jsonand refreshingpackage-lock.jsonaccordingly.The lockfile updates ESLint’s internal dependency graph (notably
@eslint/*,espree,eslint-scope,minimatchv10) and drops legacy@eslint/eslintrc-related packages, reflecting ESLint v10’s breaking changes and updated Node engine constraints.Written by Cursor Bugbot for commit df6dc66. This will update automatically on new commits. Configure here.