Skip to content
Open
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
4 changes: 2 additions & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"browser-pack-flat": "~3.5.0",
"browserify": "~17.0.0",
"cssnano": "~7.1.0",
"eslint": "~9.39.0",
"eslint": "~10.0.0",
Copy link

Choose a reason for hiding this comment

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

ESLint v10 incompatible with legacy .eslintrc config

High Severity

ESLint v10 removed support for the legacy eslintrc configuration format (.eslintrc files) and requires flat config (eslint.config.js/eslint.config.mjs). The project still uses a .eslintrc file with "extends": "standard" and has no flat config file. Bumping eslint to ~10.0.0 without migrating the configuration means any direct invocation of eslint will fail to pick up the project's linting rules. The gulp-eslint v6 build task bundles its own ESLint v6 so it may still work, but the top-level eslint devDependency becomes non-functional.

Fix in CursorΒ Fix in Web

"eslint-plugin-import": "~2.32.0",
"eslint-plugin-n": "~17.23.0",
"eslint-plugin-promise": "~7.2.0",
Expand Down Expand Up @@ -56,7 +56,7 @@
"overrides": {
"qs": "^6.14.1",
"eslint-plugin-node": {
"eslint": "~9.39.0"
"eslint": "~10.0.0"
},
"gulp-stylelint": {
"stylelint": "~16.26.0"
Expand Down