1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Correct syntax error in devcontainer.json (#49797)

This commit is contained in:
hubwriter
2024-04-02 09:42:17 +01:00
committed by GitHub
parent e08efe033e
commit ac374e4612

View File

@@ -9,12 +9,6 @@
"args": { "VARIANT": "20" } "args": { "VARIANT": "20" }
}, },
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"cSpell.language": ",en"
},
// Install features. Type 'feature' in the VS Code command palette for a full list. // Install features. Type 'feature' in the VS Code command palette for a full list.
"features": { "features": {
"sshd": "latest" "sshd": "latest"
@@ -22,7 +16,11 @@
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": {}, // Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"cSpell.language": ",en"
},
// Visual Studio Code extensions which help authoring for docs.github.com. // Visual Studio Code extensions which help authoring for docs.github.com.
"extensions": [ "extensions": [
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",