Skip to content

Commit 30a3d9f

Browse files
committed
fix: remove deprecated --fix flag from next lint command
Next.js 16 removed the --fix option from next lint CLI.
1 parent 57a8429 commit 30a3d9f

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 --fix --no-cache && npx tsc --noEmit",
13+
"verify": "prettier --write . && next lint --no-cache && 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)