gitpod/components/image-builder-mk3/image-builder.code-workspace
2022-10-28 10:27:02 +02:00

52 lines
1.3 KiB
Plaintext

{
"folders": [
{ "path": "../image-builder-api/go" },
{ "path": "../image-builder-bob" },
{ "path": "../image-builder-mk3" },
{ "path": "../ws-manager" },
{ "path": "../server" },
{ "path": "../../test" },
{ "path": "../../dev/gpctl" },
{ "path": "../../install/installer" }
],
"settings": {
"typescript.tsdk": "gitpod/node_modules/typescript/lib",
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[go]": {
"editor.formatOnSave": true
},
"[tf]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"workspace.supportMultiRootWorkspace": true,
"database.connections": [
{
"type": "mysql",
"name": "devstaging DB",
"host": "127.0.0.1:23306",
"username": "gitpod",
"database": "gitpod",
"password": "test"
}
],
"launch": {},
"files.exclude": {
"**/.git": true
},
"go.lintTool": "golangci-lint",
"gopls": {
"allowModfileModifications": true
}
}
}