|
1 | 1 | { |
2 | | - "name": "GitHub Codespaces (Default)", |
3 | | - "build": { |
4 | | - "dockerfile": "Dockerfile", |
5 | | - "args": { |
6 | | - "INSTALL_DOCKER": "true" |
7 | | - } |
8 | | - }, |
9 | | - "settings": { |
10 | | - "terminal.integrated.shell.linux": "/bin/bash", |
11 | | - "go.useGoProxyToCheckForToolUpdates": false, |
12 | | - "go.useLanguageServer": true, |
13 | | - "go.gopath": "/go", |
14 | | - "go.goroot": "/usr/local/go", |
15 | | - "go.toolsGopath": "/go/bin", |
16 | | - "python.pythonPath": "/opt/python/latest/bin/python", |
17 | | - "python.linting.enabled": true, |
18 | | - "python.linting.pylintEnabled": true, |
19 | | - "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", |
20 | | - "python.formatting.blackPath": "/usr/local/py-utils/bin/black", |
21 | | - "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", |
22 | | - "python.linting.banditPath": "/usr/local/py-utils/bin/bandit", |
23 | | - "python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", |
24 | | - "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", |
25 | | - "python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", |
26 | | - "python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", |
27 | | - "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint", |
28 | | - "lldb.executable": "/usr/bin/lldb", |
29 | | - "files.watcherExclude": { |
30 | | - "**/target/**": true |
31 | | - } |
32 | | - }, |
33 | | - "remoteUser": "codespace", |
34 | | - "overrideCommand": false, |
35 | | - "workspaceMount": "source=${localWorkspaceFolder},target=/home/codespace/workspace,type=bind,consistency=cached", |
36 | | - "workspaceFolder": "/home/codespace/workspace", |
37 | | - "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind" ], |
38 | | - "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], |
| 2 | + "name": "GitHub Codespaces (Default)", |
| 3 | + "build": { |
| 4 | + "dockerfile": "Dockerfile", |
| 5 | + "args": { |
| 6 | + "INSTALL_DOCKER": "true" |
| 7 | + } |
| 8 | + }, |
| 9 | + "settings": { |
| 10 | + "terminal.integrated.shell.linux": "/bin/bash", |
| 11 | + "go.useGoProxyToCheckForToolUpdates": false, |
| 12 | + "go.useLanguageServer": true, |
| 13 | + "go.gopath": "/go", |
| 14 | + "go.goroot": "/usr/local/go", |
| 15 | + "go.toolsGopath": "/go/bin", |
| 16 | + "python.pythonPath": "/opt/python/latest/bin/python", |
| 17 | + "python.linting.enabled": true, |
| 18 | + "python.linting.pylintEnabled": true, |
| 19 | + "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", |
| 20 | + "python.formatting.blackPath": "/usr/local/py-utils/bin/black", |
| 21 | + "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", |
| 22 | + "python.linting.banditPath": "/usr/local/py-utils/bin/bandit", |
| 23 | + "python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", |
| 24 | + "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", |
| 25 | + "python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", |
| 26 | + "python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", |
| 27 | + "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint", |
| 28 | + "lldb.executable": "/usr/bin/lldb", |
| 29 | + "files.watcherExclude": { |
| 30 | + "**/target/**": true |
| 31 | + } |
| 32 | + }, |
| 33 | + "remoteUser": "codespace", |
| 34 | + "overrideCommand": false, |
| 35 | + "workspaceMount": "source=${localWorkspaceFolder},target=/home/codespace/workspace,type=bind,consistency=cached", |
| 36 | + "workspaceFolder": "/home/codespace/workspace", |
| 37 | + "mounts": ["source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind"], |
| 38 | + "runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"], |
39 | 39 |
|
40 | | - // Add the IDs of extensions you want installed when the container is created. |
41 | | - "extensions": [ |
42 | | - "GitHub.vscode-pull-request-github", |
43 | | - "MS-vsliveshare.vsliveshare", |
44 | | - "VisualStudioExptTeam.vscodeintellicode" |
45 | | - ] |
| 40 | + // Add the IDs of extensions you want installed when the container is created. |
| 41 | + "extensions": [ |
| 42 | + "GitHub.vscode-pull-request-github", |
| 43 | + "MS-vsliveshare.vsliveshare", |
| 44 | + "VisualStudioExptTeam.vscodeintellicode" |
| 45 | + ], |
| 46 | + "postCreateCommand": "echo 'skipping Oryx'" // Disable Oryx build which runs npm install and creates a phantom node_modules folder |
46 | 47 |
|
47 | | - // Use 'forwardPorts' to make a list of ports inside the container available locally. |
48 | | - // "forwardPorts": [], |
49 | | - |
50 | | - // Use 'postCreateCommand' to run commands after the container is created. |
51 | | - // "postCreateCommand": "uname -a" |
| 48 | + // Use 'forwardPorts' to make a list of ports inside the container available locally. |
| 49 | + // "forwardPorts": [], |
52 | 50 | } |
0 commit comments