diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-17 22:48:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 22:48:38 +0300 |
commit | a630e92c468c241fa029f278e4d7a0ac96142c76 (patch) | |
tree | ebc96705a0dd8be842fb097dcb494155020fd110 /src/go | |
parent | 4ecc275a8d199cdce98cd462fee612d7f687efe4 (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.json | 12 |
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}" |