chore: update vscode setting enforcement for go111module="on" (#1738)

vscode setting enforcement for go111module to set on and availability of schema for go extension
This commit is contained in:
deeshu
2023-05-25 19:30:32 +05:30
committed by GitHub
parent ea728d232d
commit b42e5c3213

View File

@@ -1,5 +1,9 @@
{ {
"json.schemaDownload.enable":true,
"go.lintOnSave": "workspace", "go.lintOnSave": "workspace",
"go.lintTool": "golangci-lint", "go.lintTool": "golangci-lint",
"go.inferGopath": false "go.inferGopath": false,
"go.toolsEnvVars": {
"GO111MODULE": "on"
}
} }