24 lines
527 B
JSON
24 lines
527 B
JSON
{
|
|
"go.useLanguageServer": true,
|
|
"go.toolsManagement.autoUpdate": true,
|
|
"go.testFlags": ["-count=1"],
|
|
"[go]": {
|
|
"editor.defaultFormatter": "golang.go",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
}
|
|
},
|
|
"[go.mod]": {
|
|
"editor.defaultFormatter": "golang.go",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"gopls": {
|
|
"ui.diagnostic.staticcheck": true,
|
|
"formatting.local": "oci-portal"
|
|
},
|
|
"files.exclude": {
|
|
"**/.DS_Store": true
|
|
}
|
|
}
|