Skip to content

Commit 1a1e899

Browse files
committed
feat: update formatter configurations for JavaScript and JSON files
- Set `bracketSpacing` and `indentWidth` for JavaScript formatter. - Defined `indentWidth` for JSON formatter.
1 parent c604c7d commit 1a1e899

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

biome.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,16 @@
1919
},
2020
"javascript": {
2121
"formatter": {
22+
"bracketSpacing": false,
23+
"indentWidth": 4,
2224
"quoteStyle": "double",
2325
"semicolons": "always",
2426
"trailingCommas": "all"
2527
}
2628
},
2729
"json": {
2830
"formatter": {
31+
"indentWidth": 2,
2932
"trailingCommas": "none"
3033
}
3134
}

0 commit comments

Comments
 (0)