aboutsummaryrefslogtreecommitdiff
path: root/src/go
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-08-17 22:48:38 +0300
committerGitHub <noreply@github.com>2022-08-17 22:48:38 +0300
commita630e92c468c241fa029f278e4d7a0ac96142c76 (patch)
treeebc96705a0dd8be842fb097dcb494155020fd110 /src/go
parent4ecc275a8d199cdce98cd462fee612d7f687efe4 (diff)
Move extensions and settings under customizations.vscode (#97)
* move extensions and settings under customizations * nit * bump versions
Diffstat (limited to 'src/go')
-rw-r--r--src/go/devcontainer-feature.json12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json
index 6228090..a0f37df 100644
--- a/src/go/devcontainer-feature.json
+++ b/src/go/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "go",
- "version": "1.0.0",
+ "version": "1.0.1",
"name": "Go",
"description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.",
"options": {
@@ -17,9 +17,13 @@
}
},
"init": true,
- "extensions": [
- "golang.Go"
- ],
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "golang.Go"
+ ]
+ }
+ },
"containerEnv": {
"GOPATH": "/usr/local/go",
"PATH": "${GOPATH}/bin:${PATH}"