golang-base/.vscode/settings.json
2023-10-24 12:35:42 -05:00

28 lines
607 B
JSON

{
"go.useLanguageServer": true,
"go.vetOnSave": "package",
"go.lintOnSave": "package",
"go.formatTool": "goimports",
"go.lintTool": "golangci-lint",
"go.lintFlags": [
"--fast"
],
"[go]": {
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"comment": {
"description": "Uncomment to enable goproxy and gosumdb."
"go.toolsEnvVars": {
"GOPROXY": "https://example.com/goproxy/",
"GOSUMDB": "sum.golang.org https://example.com/gosum/"
}
}
}