diff --git a/biome.json b/biome.json index 0cd1d3a..7485a43 100644 --- a/biome.json +++ b/biome.json @@ -58,7 +58,28 @@ { "includes": ["**/*.css"], "linter": { - "enabled": false + "rules": { + "suspicious": { + "noDuplicateProperties": "off", + "noUnknownAtRules": { + "options": { + "ignore": ["tailwind"] + }, + "level": "error" + } + }, + "correctness": { + "noUnknownFunction": { + "options": { + "ignore": ["theme", "screen"] + }, + "level": "error" + } + }, + "complexity": { + "noImportantStyles": "off" + } + } } } ]