diff options
Diffstat (limited to 'biome.json')
| -rw-r--r-- | biome.json | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..8943de3 --- /dev/null +++ b/biome.json @@ -0,0 +1,52 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.4.15/schema.json", + "assist": { "actions": { "source": { "organizeImports": "on" } } }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "formatter": { + "enabled": true, + "indentStyle": "tab", + "lineWidth": 100 + }, + "javascript": { + "formatter": { + "quoteStyle": "double", + "semicolons": "always" + } + }, + "css": { + "parser": { + "tailwindDirectives": true + } + }, + "overrides": [ + { + "includes": ["**/*.css"], + "linter": { + "rules": { + "correctness": { + "noUnknownProperty": "off" + } + } + } + }, + { + "includes": ["**/*.svelte"], + "linter": { + "rules": { + "correctness": { + "noUnusedImports": "off", + "noUnusedVariables": "off" + } + } + } + } + ], + "files": { + "includes": ["**", "!**/node_modules", "!**/dist", "!**/build"] + } +} |
