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.
next lint
1 parent 6158c1f commit 68fe1fbCopy full SHA for 68fe1fb
packages/next/src/lib/eslint/runLintCheck.ts
@@ -430,13 +430,6 @@ export async function runLintCheck(
430
// Check if necessary deps installed, and install any that are missing
431
deps = await hasNecessaryDependencies(baseDir, requiredPackages)
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'
437
- }
438
- })
439
-
440
await installDependencies(baseDir, deps.missing, true)
441
}
442
0 commit comments