From c720a7ce3a8906190a66bb5b44288c73273e7203 Mon Sep 17 00:00:00 2001 From: Jagadesh P Date: Sat, 7 Feb 2026 02:49:52 +0530 Subject: [PATCH] fix(biome): enable tailwind directives and css support Updates biome.json schema to 2.3.3 and enables parsing for Tailwind directives and CSS modules to fix linting errors. --- biome.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/biome.json b/biome.json index bb72091a..91dec74b 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.2.4/schema.json", + "$schema": "https://biomejs.dev/schemas/2.3.3/schema.json", "files": { "ignoreUnknown": false }, @@ -67,5 +67,16 @@ "formatter": { "trailingCommas": "none" } + }, + "css": { + "parser": { + "cssModules": true, + "tailwindDirectives": true + }, + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 2 + } } }