"git@developer.sourcefind.cn:yangql/googletest.git" did not exist on "cca227fe7548171869021bafc31ffd33515f1fcc"
devcontainer.json 1.82 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  "name": "GitHub Codespaces for SuperBench",
  "image": "mcr.microsoft.com/vscode/devcontainers/universal:linux",
  "settings": {
    "go.toolsManagement.checkForUpdates": "local",
    "go.useLanguageServer": true,
    "go.gopath": "/go",
    "go.goroot": "/usr/local/go",
    "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
    },
    "workbench.iconTheme": "vscode-icons"
  },
  "remoteUser": "codespace",
  "overrideCommand": false,
  "mounts": [
    "source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume"
  ],
  "runArgs": [
    "--cap-add=SYS_PTRACE",
    "--security-opt",
    "seccomp=unconfined",
    "--privileged",
    "--init"
  ],
  "extensions": [
    "gitHub.vscode-pull-request-github",
    "editorconfig.editorconfig",
    "ms-python.python",
    "ms-python.vscode-pylance",
    "njpwerner.autodocstring",
    "eamodio.gitlens",
    "vscode-icons-team.vscode-icons"
  ],
  "forwardPorts": [
    3000
  ],
  "remoteEnv": {
    "SB_TEST_CUDA": "0"
  },
  "postCreateCommand": "bash ./.devcontainer/post-create-command.sh"
}