Skip to content

Commit 9933301

Browse files
committed
fix: replace next lint with eslint - Next.js 16 removed lint command
Next.js 16 removed the 'next lint' CLI command entirely. Using direct eslint invocation instead.
1 parent a6c9fe4 commit 9933301

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dev": "clear && next dev --turbopack",
1111
"build": "next build",
1212
"start": "next start",
13-
"verify": "prettier --write . && next lint && npx tsc --noEmit",
13+
"verify": "prettier --write . && eslint . && npx tsc --noEmit",
1414
"check": "clear && npm run verify && npm run test:run && npx playwright test --reporter=list",
1515
"nuke": "rm -rf node_modules package-lock.json .next && npm install",
1616
"deps": "npx npm-check-updates",

0 commit comments

Comments
 (0)