io/.vscode/settings.json
Go Tools 8b2c20bfe4 init: bootstrap io from go-template untagged
Initialized from gitea.djmil.dev/go/template @ untagged.
Module renamed to gitea.djmil.dev/go/io.
2026-04-08 18:55:13 +00:00

43 lines
1.6 KiB
JSON

{
// ── Go ─────────────────────────────────────────────────────────────────────
"go.useLanguageServer": true,
"go.lintTool": "golangci-lint",
"go.lintFlags": ["--fast"],
"go.lintOnSave": "workspace",
"go.testFlags": ["-race"],
"go.coverOnSave": false,
"go.generateOnSave": false,
// ── Editor ─────────────────────────────────────────────────────────────────
"[go]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "golang.go",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
// ── Files ──────────────────────────────────────────────────────────────────
"files.exclude": {
"**/bin": true,
"**/.git": true
},
"search.exclude": {
"**/bin": true,
"**/mocks": true,
"**/vendor": true
},
// ── Test explorer ──────────────────────────────────────────────────────────
"go.testExplorer.enable": true,
"makefile.configureOnOpen": false,
"cSpell.words": [
"djmil",
"gitea",
"testutil"
]
}