chore: go tools settings updated

golanci-lint update to analyze package
organize import on save
This commit is contained in:
lnu 2021-11-03 08:19:43 +01:00 committed by Jan De Dobbeleer
parent 67ce40e7d7
commit 4a088a5a1c

11
.vscode/settings.json vendored
View file

@ -1,8 +1,15 @@
{
"go.lintTool": "golangci-lint",
"go.lintOnSave": "file",
"go.useLanguageServer": true,
"go.languageServerExperimentalFeatures": {
"diagnostics": false,
},
"go.lintFlags": ["--fast"],
"go.testOnSave": true,
"[go]": {
"editor.formatOnSave": false
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
}