Skip to content
Closed
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 templates/blank/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@stylistic/eslint-plugin": "^5.2.2",
"eslint": "^9.27.0",
"eslint": "^10.0.0",
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

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

The PR description says ESLint is upgraded from 9.39.2 → 10.0.0, but this template was previously using ^9.27.0. Please update the PR description (or Snyk config) so reviewers can accurately assess what changed in this repository.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

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

ESLint is bumped to ^10.0.0 but the rest of the template’s ESLint ecosystem remains on v9-era packages (e.g. @eslint/js is ^9.27.0). In the main repo package.json these are kept on the same major (eslint ^9.x with @eslint/js ^9.x), and mixing majors can cause peer-dependency conflicts or config/runtime incompatibilities. Consider upgrading @eslint/js (and any plugins that require it) to versions compatible with ESLint 10, or keep eslint on ^9.x if that satisfies the vulnerability fix.

Suggested change
"eslint": "^10.0.0",
"eslint": "^9.27.0",

Copilot uses AI. Check for mistakes.
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-jsdoc": "^54.1.1",
"globals": "^16.1.0"
Expand Down
Loading