chore: update biome.json to refine file includes and enhance JavaScript and JSON formatting options

This commit is contained in:
Ben Allfree
2025-11-23 16:57:02 -08:00
parent b16ccdc183
commit 7517b01f5e

View File

@@ -6,7 +6,7 @@
"useIgnoreFile": true
},
"files": {
"includes": ["src/**", "!vendor"]
"includes": ["./**", "convex/**", "src/**", "!vendor", "!convex/_generated"]
},
"css": {
"parser": {
@@ -28,7 +28,12 @@
},
"javascript": {
"formatter": {
"quoteStyle": "double"
"quoteStyle": "double",
"indentStyle": "space",
"indentWidth": 2,
"quoteProperties": "asNeeded",
"semicolons": "always",
"trailingCommas": "all"
}
},
"assist": {
@@ -38,5 +43,10 @@
"organizeImports": "on"
}
}
},
"json": {
"formatter": {
"trailingCommas": "none"
}
}
}