From 7517b01f5e8bba1af936dcfbc39b45fc315af856 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sun, 23 Nov 2025 16:57:02 -0800 Subject: [PATCH] chore: update biome.json to refine file includes and enhance JavaScript and JSON formatting options --- biome.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/biome.json b/biome.json index 669402f..c799e77 100644 --- a/biome.json +++ b/biome.json @@ -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" + } } }