Fix biome config formatting (self-heal)

This commit is contained in:
Jared Miller 2026-01-28 11:03:31 -05:00
parent 726190eaa6
commit 02be345946
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
2 changed files with 34 additions and 34 deletions

View file

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

View file

@ -1 +1 @@
console.log("Hello via Bun!"); console.log("Hello via Bun!");