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" + } } }