oh-my-posh/.vscode/settings.json
2021-11-05 09:09:17 +01:00

20 lines
391 B
JSON

{
"go.lintTool": "golangci-lint",
"go.useLanguageServer": true,
"go.languageServerExperimentalFeatures": {
"diagnostics": false,
},
"go.lintFlags": ["--fast"],
"go.testOnSave": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"go.formatTool": "gofmt",
"go.formatFlags": [
"-s"
]
}