mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 13:04:04 -08:00
24 lines
667 B
JSON
24 lines
667 B
JSON
{
|
|
"go.lintTool": "golangci-lint",
|
|
"go.useLanguageServer": true,
|
|
"go.lintFlags": ["--fast"],
|
|
"go.testOnSave": true,
|
|
"[go]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"go.formatTool": "gofmt",
|
|
"go.formatFlags": [
|
|
"-s"
|
|
],
|
|
"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)"
|
|
}
|