Skip to content

chore(deps-dev): bump eslint from 9.39.2 to 10.0.0#269

Merged
sergeyklay merged 1 commit intomainfrom
deps/eslint-10
Feb 10, 2026
Merged

chore(deps-dev): bump eslint from 9.39.2 to 10.0.0#269
sergeyklay merged 1 commit intomainfrom
deps/eslint-10

Conversation

@sergeyklay
Copy link
Owner

🎯 Scope & Context

Type: Chore

Intent: Bump eslint from 9.39.2 to 10.0.0

Related Issues:

🧭 Reviewer Guide

Complexity: Low

Entry Point

No specific entry point needed - changes are straightforward and self-contained.

Sensitive Areas

  • package.json: Bump eslint. Use @ledsun fork.

⚠️ Risk Assessment

  • Breaking Changes: No breaking changes
  • Migrations/State: No migrations or state changes

@sergeyklay sergeyklay requested a review from cicdbot as a code owner February 10, 2026 09:53
Copilot AI review requested due to automatic review settings February 10, 2026 09:53
@codecov
Copy link

codecov bot commented Feb 10, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 95.99%. Comparing base (5f4a03d) to head (72b1aaf).
⚠️ Report is 18 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #269   +/-   ##
=======================================
  Coverage   95.99%   95.99%           
=======================================
  Files          91       91           
  Lines       13504    13504           
  Branches     1242     1242           
=======================================
  Hits        12963    12963           
  Misses        541      541           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@sergeyklay sergeyklay merged commit 30bc6ee into main Feb 10, 2026
11 checks passed
@sergeyklay sergeyklay deleted the deps/eslint-10 branch February 10, 2026 09:56
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR updates the repo’s linting toolchain by upgrading ESLint to v10 and adding an override intended to keep eslint-plugin-react compatible while upstream issues are addressed.

Changes:

  • Bump eslint from ^9 to ^10.0.0
  • Add an overrides entry to force eslint-plugin-react to a fork/branch
  • Regenerate package-lock.json to reflect the new dependency graph

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated 2 comments.

File Description
package.json Upgrades ESLint to v10 and adds an override for eslint-plugin-react.
package-lock.json Updates the resolved ESLint version and records the overridden eslint-plugin-react source plus transitive changes.

Comment on lines +20 to +22
"overrides": {
"eslint-plugin-react": "github:ledsun/eslint-plugin-react#update-deprecated-calls-v8"
},
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

The override uses the github: shorthand, which npm resolves to git+ssh://git@github.com/... (see package-lock). This will break npm ci/installs in environments without GitHub SSH keys (e.g., CI). Prefer a git+https://github.com/... URL (or https://...) for the override so it can be fetched anonymously.

Copilot uses AI. Check for mistakes.
"bill-management"
],
"overrides": {
"eslint-plugin-react": "github:ledsun/eslint-plugin-react#update-deprecated-calls-v8"
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

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

The override points to a mutable branch (#update-deprecated-calls-v8). Even with a lockfile, a future npm install can silently change the resolved commit when the branch moves. Consider pinning the override to an immutable commit SHA (or a tag) to keep dependency resolution reproducible.

Suggested change
"eslint-plugin-react": "github:ledsun/eslint-plugin-react#update-deprecated-calls-v8"
"eslint-plugin-react": "github:ledsun/eslint-plugin-react#<pinned-commit-sha>"

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant