Files
2025-10-29 00:24:50 -05:00

21 lines
594 B
JSON

{
"go.useLanguageServer": true,
"go.formatTool": "goimports",
"go.lintOnSave": "package",
"go.vetOnSave": "package",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "never"
},
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "never"
}
},
"go.buildOnSave": "off",
"go.lintTool": "golint",
"go.toolsManagement.autoUpdate": true
}