26 lines
No EOL
595 B
JSON
26 lines
No EOL
595 B
JSON
{
|
|
"go.useLanguageServer": true,
|
|
"[go]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": false,
|
|
},
|
|
"editor.snippetSuggestions": "none",
|
|
},
|
|
"[go.mod]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true,
|
|
},
|
|
},
|
|
"gopls": {
|
|
"usePlaceholders": true,
|
|
"completeUnimported": true,
|
|
"staticcheck": true,
|
|
},
|
|
"go.testFlags": [
|
|
"-v",
|
|
"-vet=off",
|
|
"-timeout=300s"
|
|
]
|
|
} |