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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"classnames": "2.5.1",
"conventional-changelog-conventionalcommits": "10.2.1",
"cssnano": "8.0.5",
"eslint": "8.57.1",
"eslint": "10.8.1",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

P1 ESLint 10 only supports flat config (eslint.config.js). This repo has no flat config; .eslintrc extends legacy @doist/eslint-config/eslintrc/* paths and the lint script still invokes eslint the old way, so npm run lint (and validate, plus the pre-commit hook) will fail after this bump. Migrate to eslint.config.js (the flat-config equivalents of the @doist/eslint-config presets) as part of this upgrade.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

P2 package-lock.json still pins eslint to 8.57.1 (both the root devDependencies entry and node_modules/eslint). The bump is therefore incomplete: npm ci will fail with an out-of-sync lockfile (or install 8.57.1), so the version in package.json never takes effect. Regenerate the lockfile as part of this change.

"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-jest": "28.14.0",
Expand Down
Loading