From dad59e4914d6896c2c08d7296c95e432fabe3e55 Mon Sep 17 00:00:00 2001 From: zetaloop Date: Fri, 20 Feb 2026 15:15:43 +0800 Subject: [PATCH] fix: exclude next-env.d.ts from Biome checks --- biome.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 91f7e0d..582839e 100644 --- a/biome.json +++ b/biome.json @@ -7,7 +7,16 @@ }, "files": { "ignoreUnknown": true, - "includes": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "**/*.mjs", "**/*.json", "**/*.css"] + "includes": [ + "**/*.ts", + "**/*.tsx", + "**/*.js", + "**/*.jsx", + "**/*.mjs", + "**/*.json", + "**/*.css", + "!next-env.d.ts" + ] }, "formatter": { "enabled": true,