docs(multi lang support): work on getting multi lang support working

This commit is contained in:
2025-09-06 11:58:40 -05:00
parent 1508fb2fa7
commit 945048f43e
39 changed files with 259 additions and 93 deletions

21
.vscode/settings.json vendored
View File

@@ -24,5 +24,24 @@
},
"[handlebars]": {
"editor.formatOnSave": true
}
},
"[go]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "golang.go"
},
"[powershell]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-vscode.powershell" // requires PowerShell extension
},
"[bat]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "foxundermoon.shell-format" // supports .sh, .bat, .cmd
},
"[cmd]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "foxundermoon.shell-format"
},
// Optional: Configure goimports instead of gofmt
"go.formatTool": "goimports"
}