2020-10-17 01:29:30 +03:00
|
|
|
{
|
2021-01-22 19:52:15 +03:00
|
|
|
"name": "GitHub Codespaces (Default)",
|
|
|
|
"remoteUser": "codespace",
|
|
|
|
"overrideCommand": false,
|
|
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/codespace/workspace,type=bind,consistency=cached",
|
|
|
|
"workspaceFolder": "/home/codespace/workspace",
|
2023-06-13 22:59:50 +03:00
|
|
|
"mounts": [
|
|
|
|
"source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind"
|
|
|
|
],
|
|
|
|
"runArgs": [
|
|
|
|
"--cap-add=SYS_PTRACE",
|
|
|
|
"--security-opt",
|
|
|
|
"seccomp=unconfined",
|
|
|
|
"--privileged"
|
|
|
|
],
|
|
|
|
"postCreateCommand": "bash .devcontainer/init.sh",
|
2021-01-22 19:52:15 +03:00
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
|
|
// "forwardPorts": [],
|
2023-02-23 21:17:42 +03:00
|
|
|
"customizations": {
|
|
|
|
"codespaces": {
|
|
|
|
"repositories": {
|
|
|
|
"Azure/azure-sdk-assets": {
|
|
|
|
"permissions": {
|
2023-06-13 22:59:50 +03:00
|
|
|
"contents": "write"
|
2023-02-23 21:17:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-11 23:20:09 +03:00
|
|
|
},
|
|
|
|
"vscode": {
|
|
|
|
"settings": {
|
|
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
|
|
"go.useGoProxyToCheckForToolUpdates": false,
|
|
|
|
"go.useLanguageServer": true,
|
|
|
|
"go.gopath": "/go",
|
|
|
|
"go.goroot": "/usr/local/go",
|
|
|
|
"go.toolsGopath": "/go/bin",
|
|
|
|
"python.pythonPath": "/opt/python/latest/bin/python",
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
"python.linting.pylintEnabled": true,
|
|
|
|
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
|
|
|
|
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
|
|
|
|
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
|
|
|
|
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
|
|
|
|
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
|
|
|
|
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
|
|
|
|
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
|
|
|
|
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
|
|
|
|
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
|
|
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
|
|
"files.watcherExclude": {
|
|
|
|
"**/target/**": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
|
|
"extensions": [
|
|
|
|
"GitHub.vscode-pull-request-github",
|
|
|
|
"MS-vsliveshare.vsliveshare",
|
|
|
|
"VisualStudioExptTeam.vscodeintellicode"
|
|
|
|
]
|
2023-02-23 21:17:42 +03:00
|
|
|
}
|
|
|
|
}
|
2020-10-17 01:29:30 +03:00
|
|
|
}
|