Skip to content

Commit

Permalink
chore(vscode): Use new code action values "explicit" (#9805)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
scttcper committed Dec 12, 2023
1 parent a05de17 commit 380a552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
],
"deno.enablePaths": ["packages/deno/test"],
"editor.codeActionsOnSave": {
"source.organizeImports.biome": true,
"quickfix.biome": true
"source.organizeImports.biome": "explicit",
"quickfix.biome": "explicit"
},
"editor.defaultFormatter": "biomejs.biome"
}

0 comments on commit 380a552

Please sign in to comment.