-
Notifications
You must be signed in to change notification settings - Fork 34.8k
Closed
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugverifiedVerification succeededVerification succeeded
Milestone
Description
- I guess this a regression from Migrating over settings for Code Actions on Save to Enums #194345
- Have workspace setting like below
- Reload the window
- 🐛 you get change in
.vscode/settings.json
which is a spread of those compact settings
Before
"[typescript][javascript]": {
"editor.insertSpaces": false,
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
},
After
{
"[typescript][javascript]": {
"editor.insertSpaces": false,
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
},
// ....
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
}
},
}
Metadata
Metadata
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bugverifiedVerification succeededVerification succeeded