dagu/.vscode/settings.json
2025-05-06 14:47:19 +09:00

38 lines
829 B
JSON

{
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"[go]": {
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "golang.go"
},
"[markdown]": {
"editor.formatOnSave": false
},
"editor.rulers": [
80
],
"editor.renderWhitespace": "all",
"go.lintTool": "golangci-lint",
"go.lintFlags": [
"--fast"
],
"go.formatTool": "gofmt",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.associations": {
"*.gohtml": "html"
},
"prettier.tabWidth": 2,
"editor.tabSize": 2,
"cSpell.words": [
"dagu",
"yota",
"hamada",
"debugf",
"infof",
"warnf",
"errorf",
"fatalf",
"mapstructure",
],
}