mirror of
https://github.com/tavenli/port-forward.git
synced 2024-04-21 12:42:13 +00:00
32 lines
820 B
JSON
32 lines
820 B
JSON
{
|
|
"go.formatTool": "goimports",
|
|
"go.alternateTools": {
|
|
|
|
},
|
|
"[go]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
},
|
|
// Optional: Disable snippets, as they conflict with completion ranking.
|
|
"editor.snippetSuggestions": "none",
|
|
},
|
|
"[go.mod]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
},
|
|
},
|
|
"go.gotoSymbol.includeImports": true,
|
|
"go.gotoSymbol.includeGoroot": true,
|
|
"go.languageServerExperimentalFeatures": {
|
|
|
|
"diagnostics": true,
|
|
"documentLink": true
|
|
},
|
|
"go.trace.server": "verbose",
|
|
"go.overwriteGoplsMiddleware": {
|
|
|
|
},
|
|
"go.useLanguageServer": true
|
|
} |