Files
RedTeamPentesting-adauth/workspace.code-workspace
2025-02-19 11:33:59 +01:00

33 lines
523 B
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"go.useLanguageServer": true,
"go.lintTool": "golangci-lint",
"gopls": {
"gofumpt": true,
},
"go.formatTool": "gofumpt",
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
},
},
"[go.mod]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
},
}
},
"extensions": {
"recommendations": [
"golang.go"
]
}
}