chore: switch lint scripts from removed next lint to eslint
Next 16 removed the `next lint` subcommand, so `npm run lint` failed with "Invalid project directory provided, no such directory: .../lint". Point the lint and lint:fix scripts at ESLint directly, using the existing flat config (eslint.config.mjs).
This commit is contained in:
committed by
Linus Rath
parent
3f9e60843d
commit
bfc8ba851a
+2
-2
@@ -25,8 +25,8 @@
|
|||||||
"dev": "next dev --turbopack",
|
"dev": "next dev --turbopack",
|
||||||
"build": "next build --turbopack",
|
"build": "next build --turbopack",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint",
|
"lint": "eslint .",
|
||||||
"lint:fix": "next lint --fix",
|
"lint:fix": "eslint . --fix",
|
||||||
"test:translations": "vitest run --no-isolate lib/__tests__/translations.test.ts",
|
"test:translations": "vitest run --no-isolate lib/__tests__/translations.test.ts",
|
||||||
"prepare": "husky",
|
"prepare": "husky",
|
||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit"
|
||||||
|
|||||||
Reference in New Issue
Block a user