Configure biome to use 2 space indentation

Switching from tabs to spaces for consistency with most TypeScript projects.
This commit is contained in:
Jared Miller 2026-01-28 10:58:51 -05:00
commit 0bc0c2fded
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

35
biome.json Normal file
View file

@ -0,0 +1,35 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}