aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/biome.json
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/biome.json')
-rw-r--r--frontend/biome.json27
1 files changed, 19 insertions, 8 deletions
diff --git a/frontend/biome.json b/frontend/biome.json
index 6da4a7a..0d71d59 100644
--- a/frontend/biome.json
+++ b/frontend/biome.json
@@ -1,5 +1,5 @@
{
- "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
+ "$schema": "https://biomejs.dev/schemas/2.3.15/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
@@ -7,19 +7,24 @@
},
"files": {
"ignoreUnknown": false,
- "ignore": [
- "./.cache",
- "./app/api/schema.d.ts",
- "./app/shiki.bundle.ts",
- "./dist"
+ "includes": [
+ "**",
+ "!.cache",
+ "!app/api/schema.d.ts",
+ "!app/shiki.bundle.ts",
+ "!dist"
]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
- "organizeImports": {
- "enabled": true
+ "assist": {
+ "actions": {
+ "source": {
+ "organizeImports": "on"
+ }
+ }
},
"linter": {
"enabled": false
@@ -28,5 +33,11 @@
"formatter": {
"quoteStyle": "double"
}
+ },
+ "css": {
+ "parser": {
+ "cssModules": true,
+ "tailwindDirectives": true
+ }
}
}