mirror of
https://github.com/RedTeamPentesting/adauth
synced 2026-06-08 12:20:46 +00:00
33 lines
523 B
Plaintext
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"
|
|
]
|
|
}
|
|
}
|