From 247bb7c2db5f0d48178398599348249bf886ebbc Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Fri, 8 Mar 2019 21:19:04 +0100 Subject: Use go module as dependency tool instead of glide Get ride of glide tool (marked as obsolete) and go module instead to populate dependency packages. See also: https://github.com/golang/go/wiki/Modules Bug-AGL: SPEC-2289 Change-Id: I9c16bb0759c34cab48b5bd03fc29993c38608c6e Signed-off-by: Sebastien Douheret --- .vscode/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.vscode/settings.json') diff --git a/.vscode/settings.json b/.vscode/settings.json index 1eb0fa5..59cafea 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,6 +2,9 @@ { // Specify GOPATH here to override the one that is set as environment variable. The inferred GOPATH from workspace root overrides this, if go.inferGopath is set to true. "go.gopath": "${workspaceRoot}/../../../../../..", + "go.toolsEnvVars": { + "GO111MODULE": "on" + }, // The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on. "editor.tabSize": 4, // Insert spaces when pressing Tab. This setting is overriden based on the file contents when `editor.detectIndentation` is on. @@ -14,7 +17,6 @@ "files.exclude": { ".tmp": true, ".git": true, - "glide.lock": true, "vendor": true, "debug": true, "bin": true, -- cgit 1.2.3-korg