Files
waste-go/.vscode/settings.json

22 lines
521 B
JSON
Raw Permalink Normal View History

{
"go.useLanguageServer": true,
"go.lintTool": "golangci-lint",
"go.lintOnSave": "package",
"go.formatTool": "goimports",
"go.formatOnSave": true,
"editor.formatOnSave": true,
"[go]": {
"editor.defaultFormatter": "golang.go",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"go.testFlags": ["-v", "-race"],
"files.watcherExclude": {
"**/bin/**": true
},
"search.exclude": {
"**/bin": true
}
}