From ae1bdbd084458df0ecdcbafe08b3d362b98acfc2 Mon Sep 17 00:00:00 2001 From: Florian Wathling Date: Sat, 9 May 2026 17:41:38 +0200 Subject: [PATCH] Replace 'next lint' with 'eslint .' (next lint removed in Next.js 16) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 71f634e..c8274d5 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "dev": "next dev --turbo", "build": "next build", "start": "next start", - "lint": "next lint", + "lint": "eslint .", "type-check": "tsc --noEmit", "prisma:generate": "prisma generate", "prisma:migrate": "prisma migrate dev"