Skip to content

Commit 3ff1ef4

Browse files
authored
chore: update vscode and devcontainer settings (#41370)
chore(devcontainer): update vscode settings
1 parent 1d44a1e commit 3ff1ef4

File tree

3 files changed

+8
-21
lines changed

3 files changed

+8
-21
lines changed

.devcontainer/devcontainer.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,19 @@
1111
},
1212
"customizations": {
1313
"vscode": {
14-
"terminal.integrated.profiles.linux": {
15-
"bash": {
16-
"path": "bash",
17-
"icon": "terminal-bash"
18-
}
19-
},
14+
"terminal.integrated.defaultProfile.linux": "bash",
2015
"extensions": [
2116
"dbaeumer.vscode-eslint",
17+
"oxc.oxc-vscode",
2218
"esbenp.prettier-vscode",
2319
"vitest.explorer",
2420
"editorconfig.editorconfig",
25-
"github.vscode-github-actions"
21+
"github.vscode-github-actions",
22+
"github.vscode-pull-request-github"
2623
]
2724
}
2825
},
2926
"postCreateCommand": [".devcontainer/post-create.sh"],
30-
// Otherwise jest watcher fails because deps were not installed yet
27+
// Otherwise vitest extension fails because deps were not installed yet
3128
"waitFor": "postCreateCommand"
3229
}

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"esbenp.prettier-vscode",
66
"vitest.explorer",
77
"editorconfig.editorconfig",
8-
"github.vscode-github-actions"
8+
"github.vscode-github-actions",
9+
"github.vscode-pull-request-github"
910
]
1011
}

.vscode/settings.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
11
{
2-
"[javascript]": {
3-
"editor.defaultFormatter": "esbenp.prettier-vscode"
4-
},
5-
"[typescript]": {
6-
"editor.defaultFormatter": "esbenp.prettier-vscode"
7-
},
8-
"[json]": {
2+
"[javascript][typescript][json][jsonc][yaml][md]": {
93
"editor.defaultFormatter": "esbenp.prettier-vscode"
104
},
115
"[md]": {
126
"editor.wordBasedSuggestions": "off"
137
},
14-
"files.associations": {
15-
"Dockerfile.*": "dockerfile",
16-
".releaserc": "json"
17-
},
18-
"omnisharp.autoStart": false,
198
"vitest.nodeEnv": {
209
"LOG_LEVEL": "trace",
2110
"GIT_ALLOW_PROTOCOL": "file"

0 commit comments

Comments
 (0)