Skip to content

Commit

Permalink
feat(vscode): add default formatters for other langs (spicetify#2779)
Browse files Browse the repository at this point in the history
  • Loading branch information
rxri authored Jan 31, 2024
1 parent cf8a44f commit 42b8f60
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
{
"editor.defaultFormatter": "biomejs.biome"
"editor.formatOnSave": true,
"[go]": {
"editor.defaultFormatter": "golang.go"
},
"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell"
},
"[javascript][typescript][json]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env sh
# Copyright 2022 khanhas. GPL license.
# Copyright 2022 khanhas.
# Copyright 2023-present Spicetify contributors.
# Edited from project Denoland install script (https://github.com/denoland/deno_install)

set -e
Expand Down

0 comments on commit 42b8f60

Please sign in to comment.