Skip to content
Closed
Show file tree
Hide file tree
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 @@ -11,7 +11,7 @@
"path": "^0.12.7"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint": "^10.0.2",
Copy link
Contributor

Choose a reason for hiding this comment

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

blocking: This bumps eslint from 8.57.1 to 10.0.2 (multi-major jump), but the project's .eslintrc.js config file is incompatible with eslint 9+. ESLint 9 removed eslintrc support entirely in favor of flat config (eslint.config.js). Running yarn lint after this merge will fail.

To resolve this, the .eslintrc.js needs to be migrated to the new flat config format. ESLint provides a migration guide and a compatibility utility (@eslint/eslintrc) for incremental migration. The current config is small enough that a direct rewrite to flat config should be straightforward.

Alternatively, consider whether this upgrade should be done manually rather than via dependabot, since it requires config migration alongside the version bump.

"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1"
}
Expand Down
Loading