|
{ |
|
"name": "GitHub Codespaces (Default)", |
|
"settings": { |
|
"terminal.integrated.profiles.linux": { |
|
"bash": { |
|
"path": "/bin/bash", |
|
"args": [] |
|
} |
|
}, |
|
"terminal.integrated.defaultProfile.linux": "bash", |
|
"go.useGoProxyToCheckForToolUpdates": false, |
|
"go.useLanguageServer": true, |
|
"go.gopath": "/go", |
|
"go.goroot": "/usr/local/go", |
|
"go.toolsGopath": "/go/bin", |
|
"python.defaultInterpreterPath": "/opt/python/latest/bin/python", |
|
"lldb.executable": "/usr/bin/lldb", |
|
"files.watcherExclude": { |
|
"**/target/**": true |
|
} |
|
}, |
|
"remoteUser": "codespace", |
|
"overrideCommand": false, |
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/codespace/workspace,type=bind,consistency=cached", |
|
"workspaceFolder": "/home/codespace/workspace", |
|
"mounts": [ "source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind" ], |
|
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--privileged" ], |
|
|
|
|
|
"extensions": [ |
|
"GitHub.vscode-pull-request-github", |
|
"MS-vsliveshare.vsliveshare", |
|
"VisualStudioExptTeam.vscodeintellicode" |
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|