diff options
author | Josh Spicer <joshspicer@github.com> | 2022-06-21 23:14:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 23:14:14 +0300 |
commit | 3b6fe6e60843e5b9d77b6d97e9240910cd38c45b (patch) | |
tree | 805bca9bb38def19937698af88d1a5af6966eb34 /src/go | |
parent | ceab9628c66b240593fad1da6ba363684f7c1fff (diff) |
add descriptions to feature metadata (no-ci)
Diffstat (limited to 'src/go')
-rw-r--r-- | src/go/devcontainer-feature.json | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index 3c47c4a..927850e 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -1,24 +1,36 @@ { "id": "go", "name": "Go", + "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", "options": { "version": { "type": "string", - "proposals": ["latest", "none", "1.18", "1.17"], + "proposals": [ + "latest", + "none", + "1.18", + "1.17" + ], "default": "latest", "description": "Select or enter a Go version to install" } }, "init": true, - "extensions": ["golang.Go"], + "extensions": [ + "golang.Go" + ], "containerEnv": { "GOPATH": "/usr/local/go", "PATH": "${GOPATH}/bin:${PATH}" }, - "capAdd": [ "SYS_PTRACE" ], - "securityOpt": [ "seccomp=unconfined" ], + "capAdd": [ + "SYS_PTRACE" + ], + "securityOpt": [ + "seccomp=unconfined" + ], "install": { "app": "", "file": "install.sh" } -} +}
\ No newline at end of file |