mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
68 lines
2.0 KiB
Plaintext
68 lines
2.0 KiB
Plaintext
{
|
|
"folders": [
|
|
{ "path": "." },
|
|
{ "path": "components/gitpod-protocol" },
|
|
{ "path": "components/blobserve" },
|
|
{ "path": "components/common-go" },
|
|
{ "path": "components/content-service" },
|
|
{ "path": "components/docker-up" },
|
|
{ "path": "components/ee/ws-scheduler" },
|
|
{ "path": "components/gitpod-cli" },
|
|
{ "path": "components/image-builder" },
|
|
{ "path": "components/licensor" },
|
|
{ "path": "components/local-app" },
|
|
{ "path": "components/registry-facade" },
|
|
{ "path": "components/service-waiter" },
|
|
{ "path": "components/supervisor" },
|
|
{ "path": "components/workspacekit" },
|
|
{ "path": "components/ws-daemon" },
|
|
{ "path": "components/ws-manager" },
|
|
{ "path": "components/ws-proxy" },
|
|
{ "path": "install/installer" },
|
|
{ "path": "test" },
|
|
{ "path": "dev/blowtorch" },
|
|
{ "path": "dev/gpctl" },
|
|
{ "path": "dev/loadgen" },
|
|
{ "path": "dev/poolkeeper" },
|
|
{ "path": "dev/sweeper" }
|
|
],
|
|
"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
|
|
}
|
|
}
|
|
} |