Skip to content
Merged
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
4 changes: 2 additions & 2 deletions packages/next/src/lib/eslint/runLintCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ export async function runLintCheck(
if (deps.missing.length > 0) {
deps.missing.forEach((dep) => {
if (dep.pkg === 'eslint') {
// eslint v9 has breaking changes, so lock to 8 until dependency plugins fully support v9.
dep.pkg = 'eslint@^8'
// pin to v9 to avoid breaking changes
dep.pkg = 'eslint@^9'
}
})

Expand Down
Loading