Skip to content

Commit 380a552

Browse files
authored
chore(vscode): Use new code action values "explicit" (#9805)
latest vscode will attempt to correct these values every time you open the project. **The new options are:** explicit - Triggers Code Actions when explicitly saved. Same as true. always - Triggers Code Actions when explicitly saved and on Auto Saves from window or focus changes. never - Never triggers Code Actions on save. Same as false. https://code.visualstudio.com/updates/v1_85#_code-actions-on-save-and-auto
1 parent a05de17 commit 380a552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
],
3131
"deno.enablePaths": ["packages/deno/test"],
3232
"editor.codeActionsOnSave": {
33-
"source.organizeImports.biome": true,
34-
"quickfix.biome": true
33+
"source.organizeImports.biome": "explicit",
34+
"quickfix.biome": "explicit"
3535
},
3636
"editor.defaultFormatter": "biomejs.biome"
3737
}

0 commit comments

Comments
 (0)