Files
lodestar/.vscode/settings.json
Derek Guenther 524165336d chore: add organize imports to VS Code settings (#7670)
**Motivation**

The VS Code settings file has linting and formatting enabled on save,
but not organizing imports. I think enabling this would help fix some
Biome errors before they're caught in CI.

**Description**

Adds `"source.organizeImports.biome": "explicit"` to
`.vscode/settings.json`
2025-04-08 16:49:49 +01:00

29 lines
819 B
JSON

{
"window.title": "${activeEditorShort}${separator}${rootName}${separator}${profileName}${separator}[${activeRepositoryBranchName}]",
// For `sysoev.vscode-open-in-github` extension
"openInGitHub.defaultBranch": "unstable",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}