22 lines
521 B
JSON
22 lines
521 B
JSON
|
|
{
|
||
|
|
"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
|
||
|
|
}
|
||
|
|
}
|