From dbcd12fe2c084e2d3a454b6a78ab868cd5feab5c Mon Sep 17 00:00:00 2001 From: icarus Date: Mon, 15 Sep 2025 06:47:05 +0800 Subject: [PATCH] chore: exclude tailwind.css from biome formatting --- biome.jsonc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/biome.jsonc b/biome.jsonc index 0e4995f99c..6ee37acc91 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -29,7 +29,8 @@ "!*.cjs", "!*.md", "!*.json", - "!src/main/integration/**" + "!src/main/integration/**", + "!**/tailwind.css" ], "indentStyle": "space", "indentWidth": 2,