Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit df0a246

Browse files
committed
Remove dangling commas
1 parent 3f11111 commit df0a246

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

container-templates/docker-compose/.devcontainer/devcontainer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
// connected. This is typically a volume mount in .devcontainer/docker-compose.yml
1414
"workspaceFolder": "/workspace",
1515

16-
// Update the value of this line to 'none' if you want to keep your containers running after VS Code shuts down.
17-
"shutdownAction": "stopCompose",
18-
19-
// Uncomment the next line to automatically install extensions.
20-
// "extensions": [ "eamodio.gitlens" ],
16+
// Uncomment this like if you want to keep your containers running after VS Code shuts down.
17+
// "shutdownAction": "none",
2118

2219
// Uncomment the next line if you want to add in default container specific settings.json values
2320
// "settings": { "workbench.colorTheme": "Quiet Light" },
2421

2522
// Uncomment the next line to run commands after the container is created.
2623
// "postCreateCommand": ["uname -a"]
2724

25+
// Add the IDs of any extensions you want installed in the array below.
26+
"extensions": []
27+
2828
}

container-templates/dockerfile/.devcontainer/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
// Uncomment the next line if you want to publish any ports.
1919
// "appPort": [],
2020

21-
// Uncomment the next line to automatically install extensions.
22-
// "extensions": [ "eamodio.gitlens" ],
23-
2421
// Uncomment the next line if you want to add in default container specific settings.json values
2522
// "settings": { "workbench.colorTheme": "Quiet Light" },
2623

2724
// Uncomment the next line to run commands after the container is created.
2825
// "postCreateCommand": "uname -a",
2926

27+
// Add the IDs of any extensions you want installed in the array below.
28+
"extensions": []
29+
3030
}

container-templates/image/.devcontainer/devcontainer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@
1818
// Uncomment the next line if you want to publish any ports.
1919
// "appPort": [],
2020

21-
// Uncomment the next line to automatically install extensions.
22-
// "extensions": [ "eamodio.gitlens" ],
23-
2421
// Uncomment the next line if you want to add in default container specific settings.json values
2522
// "settings": { "workbench.colorTheme": "Quiet Light" },
2623

2724
// Uncomment the next line to run commands after the container is created.
2825
// "postCreateCommand": "uname -a",
2926

27+
// Add the IDs of any extensions you want installed in the array below.
28+
"extensions": []
3029
}

0 commit comments

Comments
 (0)