From b42e5c321345a45f2f2621ce2203edcd23743c44 Mon Sep 17 00:00:00 2001 From: deeshu <99004662+deEshu2002@users.noreply.github.com> Date: Thu, 25 May 2023 19:30:32 +0530 Subject: [PATCH] chore: update vscode setting enforcement for go111module="on" (#1738) vscode setting enforcement for go111module to set on and availability of schema for go extension --- .vscode/settings.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index d7ba09eae..7d81ce6fc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,9 @@ { + "json.schemaDownload.enable":true, "go.lintOnSave": "workspace", "go.lintTool": "golangci-lint", - "go.inferGopath": false + "go.inferGopath": false, + "go.toolsEnvVars": { + "GO111MODULE": "on" + } }