Skip to content
Open
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 @@ -26,7 +26,7 @@
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.19",
"eslint-config-next": "^16.0.0",

@devin-ai-integration devin-ai-integration Bot Feb 21, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🟡 Linting toolchain now declares an incompatible ESLint requirement

The shared lint config was upgraded to a major version that requires ESLint 9 or newer ("eslint-config-next": "^16.0.0" at package.json:29) while the repository still pins ESLint 8, so the installed lint tooling no longer matches what the new config supports.
Impact: Installs emit unmet-requirement warnings and any use of this config would fail to run linting until ESLint is upgraded.

Peer requirement mismatch between eslint-config-next 16 and eslint 8.57.1

pnpm-lock.yaml:2194-2197 records eslint-config-next@16.2.12 with peerDependencies: eslint: '>=9.0.0', yet the resolved graph installs eslint: 8.57.1 (pnpm-lock.yaml:5870-5872) because the root still declares "eslint": "^8.57.1". v16 of the package ships flat-config only (eslint.config style) which ESLint 8 cannot consume. Practical impact today is limited because no config file actually extends next/next/core-web-vitals.eslintrc extends only plugin:@typescript-eslint/recommended, turbo, prettier, and examples/webhooks-nextjs/.eslintrc just extends the root — so the dependency is effectively unused; the bump is still inconsistent (either keep 15.x with ESLint 8 or upgrade ESLint to 9, or drop the dependency).

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.1.0",
"eslint-config-turbo": "^2.9.16",
Expand Down
Loading
Loading