This commit is contained in:
Matthew Bessette
2026-03-11 12:08:03 -04:00
parent 618595addb
commit a3d6b1bb1c
4 changed files with 75 additions and 13 deletions

View File

@@ -1,22 +1,45 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
"organizeImports": {
"enabled": true
"$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,
"attributePosition": "auto"
"lineEnding": "lf",
"bracketSpacing": true,
"trailingNewline": true
},
"graphql": {
"formatter": {
"quoteStyle": "double"
}
},
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
},
"formatter": {
"quoteStyle": "single",
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"jsxQuoteStyle": "double",
"trailingCommas": "all",
"arrowParentheses": "asNeeded"
"quoteProperties": "asNeeded",
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "all"
}
},
"json": {
"formatter": {
"trailingCommas": "none"
}
}
}

View File

@@ -1,11 +1,11 @@
{
"$schema": "vscode://schemas/settings/user",
"debug.javascript.autoAttachFilter": "disabled",
"editor.tabSize": 2,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"debug.javascript.autoAttachFilter": "disabled",
"[json]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
@@ -30,7 +30,10 @@
"js/ts.preferences.importModuleSpecifier": "relative",
"git.openRepositoryInParentFolders": "never",
"github.copilot.nextEditSuggestions.enabled": true,
"chat.tools.terminal.autoApprove": { "yarn test": true, "npm test": true },
"chat.tools.terminal.autoApprove": {
"yarn test": true,
"npm test": true
},
"gitlens.ai.model": "vscode",
"gitlens.ai.vscode.model": "copilot:gpt-4.1",
"chat.viewSessions.orientation": "stacked",
@@ -43,5 +46,9 @@
"https://json-schema.org/": true,
"https://developer.microsoft.com/json-schemas/": true,
"https://biomejs.dev": true
}
},
"oxc.enable": null,
"oxc.enable.oxlint": true,
"js/ts.updateImportsOnFileMove.enabled": "always",
"js/ts.experimental.useTsgo": true
}