29 lines
496 B
JSON
29 lines
496 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
|
|
}
|
|
},
|
|
|
|
"cSpell.words": [
|
|
"ftype",
|
|
"nolint",
|
|
"goconst",
|
|
"TZUTC",
|
|
"webserver",
|
|
"gocognit"
|
|
]
|
|
} |