We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1970f9f commit 2490439Copy full SHA for 2490439
packages/next/src/lib/eslint/runLintCheck.ts
@@ -432,8 +432,8 @@ export async function runLintCheck(
432
if (deps.missing.length > 0) {
433
deps.missing.forEach((dep) => {
434
if (dep.pkg === 'eslint') {
435
- // eslint v9 has breaking changes, so lock to 8 until dependency plugins fully support v9.
436
- dep.pkg = 'eslint@^8'
+ // pin to v9 to avoid breaking changes
+ dep.pkg = 'eslint@^9'
437
}
438
})
439
0 commit comments