chore: update schema version and format JSON structure in biome.json (#9289)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-08-18 09:47:27 -03:00 committed by GitHub
commit c8ac453601
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,13 +1,19 @@
{
"$schema": "https://biomejs.dev/schemas/2.1.1/schema.json",
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": { "ignoreUnknown": false },
"formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2 },
"files": {
"ignoreUnknown": false
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"domains": {
"test": "recommended"
@ -15,7 +21,9 @@
"enabled": true,
"rules": {
"recommended": false,
"a11y": { "noStaticElementInteractions": "warn" },
"a11y": {
"noStaticElementInteractions": "warn"
},
"complexity": {
"noAdjacentSpacesInRegex": "error",
"noExtraBooleanCast": "error",
@ -82,9 +90,17 @@
}
}
},
"javascript": { "formatter": { "quoteStyle": "double" } },
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": { "source": { "organizeImports": "on" } }
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}