Files
nixos/config.vscode.settings.json
Matthew Bessette c51254b9f7 bump
2026-03-11 14:55:07 -04:00

64 lines
2.0 KiB
JSON

{
"$schema": "vscode://schemas/settings/user",
"debug.javascript.autoAttachFilter": "disabled",
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"extensions.autoUpdate": false,
"extensions.autoCheckUpdates": false,
"extensions.ignoreRecommendations": false,
"[json]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"js/ts.updateImportsOnPaste.enabled": true,
"js/ts.preferences.importModuleSpecifier": "relative",
"git.openRepositoryInParentFolders": "never",
"github.copilot.nextEditSuggestions.enabled": 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",
"json.schemaDownload.trustedDomains": {
"https://schemastore.azurewebsites.net/": true,
"https://raw.githubusercontent.com/microsoft/vscode/": true,
"https://raw.githubusercontent.com/devcontainers/spec/": true,
"https://www.schemastore.org/": true,
"https://json.schemastore.org/": true,
"https://json-schema.org/": true,
"https://developer.microsoft.com/json-schemas/": true,
"https://biomejs.dev": true
},
"oxc.enable": null,
"oxc.enable.oxlint": true,
"oxc.configPath": "/etc/oxlintrc.json",
"oxc.disableNestedConfig": true,
"js/ts.updateImportsOnFileMove.enabled": "always",
"js/ts.experimental.useTsgo": true,
"workbench.iconTheme": "vscode-icons"
}