This commit is contained in:
Matthew Bessette
2026-03-11 14:12:05 -04:00
parent a3d6b1bb1c
commit b7f268e6de
8 changed files with 38 additions and 4 deletions

45
config.biome.json Normal file
View File

@@ -0,0 +1,45 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
"linter": {
"enabled": false
},
"assist": {
"enabled": false
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"attributePosition": "auto",
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 140,
"lineEnding": "lf",
"bracketSpacing": true,
"trailingNewline": true
},
"graphql": {
"formatter": {
"quoteStyle": "double"
}
},
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
},
"formatter": {
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "all"
}
},
"json": {
"formatter": {
"trailingCommas": "none"
}
}
}