From 4c0b0115a2d6fc5364a437ee835cf89a296ed078 Mon Sep 17 00:00:00 2001 From: Volnei Munhoz Date: Mon, 12 Jan 2026 07:43:49 -0300 Subject: [PATCH] remove explicity json check as it is already in included files (#26739) --- lint-staged.config.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/lint-staged.config.mjs b/lint-staged.config.mjs index 687a6cff80..f9a62c7405 100644 --- a/lint-staged.config.mjs +++ b/lint-staged.config.mjs @@ -7,6 +7,5 @@ export default { skipWarnings ? `biome lint --config-path=biome-staged.json ${files.join(" ")}` : `biome lint --config-path=biome-staged.json --error-on-warnings ${files.join(" ")}`, - "*.json": (files) => `biome format --config-path=biome-staged.json ${files.join(" ")}`, "packages/prisma/schema.prisma": ["prisma format"], };