mirror of
https://github.com/dagu-org/dagu.git
synced 2025-12-28 06:34:22 +00:00
38 lines
829 B
JSON
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",
|
|
],
|
|
} |