Skip to content

Commit

Permalink
chore: make sure to use biome as default formatter in vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Feb 28, 2024
1 parent 15c8b72 commit 754a34b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"biomejs.biome"
],
"unwantedRecommendations": []
}
19 changes: 17 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
{
"deno.enable": true,
"deno.lint": true,
"deno.unstable": false
}
"deno.unstable": false,
"[typescript][javascript][json]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"quickfix.biome": "always",
"source.organizeImports.biome": "always"
}
},
"typescript.tsdk": "node_modules/typescript/lib",
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{}

0 comments on commit 754a34b

Please sign in to comment.