From 198d8b1ab3aec6d8a5b384fe58a7816bebbddae5 Mon Sep 17 00:00:00 2001 From: Oliver Bryan <04oliverbryan@gmail.com> Date: Sat, 13 Dec 2025 17:39:01 +0000 Subject: [PATCH] fix(biome): allow tailwind in *.css --- biome.json | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/biome.json b/biome.json index 4169a01..3730585 100644 --- a/biome.json +++ b/biome.json @@ -1,10 +1,15 @@ { - "$schema": "https://biomejs.dev/schemas/2.0.5/schema.json", - "formatter": { - "enabled": true, - "formatWithErrors": false, - "indentStyle": "space", - "indentWidth": 4, - "lineWidth": 110 - } + "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json", + "formatter": { + "enabled": true, + "formatWithErrors": false, + "indentStyle": "space", + "indentWidth": 4, + "lineWidth": 110 + }, + "css": { + "parser": { + "tailwindDirectives": true + } + } }