aboutsummaryrefslogtreecommitdiff
path: root/src/go/devcontainer-feature.json
diff options
context:
space:
mode:
authorAlessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>2022-10-28 23:57:57 +0300
committerGitHub <noreply@github.com>2022-10-28 23:57:57 +0300
commit0ee38a48e4833063acfc9e3c177c7067941e3b30 (patch)
treeb81a8dfbe292edbefc428ce485ff4d8b0932d636 /src/go/devcontainer-feature.json
parent85d2150997d4a1736c1f407d18ae71acb8541ed3 (diff)
Install golangci-lint from prebuilt binaries and allow specifying its version (#238)
* Install golangci-lint from prebuilt binaries and allow specifying its version * Updated as requested * Update src/go/devcontainer-feature.json Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com> * Updated install path Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'src/go/devcontainer-feature.json')
-rw-r--r--src/go/devcontainer-feature.json7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json
index 75fa9ae..c83b4f0 100644
--- a/src/go/devcontainer-feature.json
+++ b/src/go/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "go",
- "version": "1.0.9",
+ "version": "1.1.0",
"name": "Go",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/go",
"description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.",
@@ -15,6 +15,11 @@
],
"default": "latest",
"description": "Select or enter a Go version to install"
+ },
+ "golangciLintVersion": {
+ "type": "string",
+ "default": "latest",
+ "description": "Version of golangci-lint to install"
}
},
"init": true,