oh-my-posh/.vscode/settings.json

24 lines
673 B
JSON
Raw Normal View History

{
"go.lintTool": "golangci-lint",
"go.useLanguageServer": true,
"go.lintFlags": ["--fast"],
"go.testOnSave": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
2023-11-19 02:58:42 -08:00
"source.organizeImports": "explicit"
}
2021-11-01 23:45:27 -07:00
},
"go.formatTool": "gofmt",
2022-06-03 11:28:37 -07:00
"go.formatFlags": [
"-s"
],
2022-01-09 11:24:47 -08:00
"azureFunctions.deploySubpath": "docs/api",
"azureFunctions.postDeployTask": "npm install (functions)",
"azureFunctions.projectLanguage": "JavaScript",
"azureFunctions.projectRuntime": "~4",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.projectSubpath": "docs/api",
"azureFunctions.preDeployTask": "npm prune (functions)"
}