22 lines
491 B
JSON
22 lines
491 B
JSON
{
|
|
"go.useLanguageServer": true,
|
|
"go.alternateTools": {
|
|
"go-langserver": "gopls"
|
|
},
|
|
"go.languageServerExperimentalFeatures": {
|
|
"format": true,
|
|
"autoComplete": true
|
|
},
|
|
"[go]": {
|
|
"editor.snippetSuggestions": "none",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
},
|
|
},
|
|
"gopls": {
|
|
"usePlaceholders": true,
|
|
"enhancedHover": true
|
|
}
|
|
}
|