File: devcontainer.json

package info (click to toggle)
bidict 0.23.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,148 kB
  • sloc: python: 1,603; makefile: 157; sh: 114; javascript: 25; xml: 9
file content (58 lines) | stat: -rw-r--r-- 2,718 bytes parent folder | download | duplicates (2)
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
56
57
58
/* vim: set ft=json5: */
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.223.0/containers/python-3
{
  "name": "Python 3",
  "build": {
    "dockerfile": "Dockerfile",
    "context": "..",
    // ARGS set in ./Dockerfile can be overridden here:
    "args": {}
  },
  // Default, container-specific settings here are set on container create.
  // Note: The project's .vscode/settings.json is still the right place
  // for non-container-specific settings.
  "settings": {
    "python.defaultInterpreterPath": "/usr/local/bin/python",
    "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",
    "esbonio.sphinx.confDir": "${workspaceFolder}/docs",
    "restructuredtext.pythonRecommendation.disabled": true,
    "terminal.integrated.defaultProfile.linux": "fish"
  },
  // Add the IDs of extensions you want installed when the container is created.
  "extensions": [
    "EditorConfig.EditorConfig",
    "GitHub.vscode-pull-request-github",
    "charliermarsh.ruff",
    "eamodio.gitlens",
    "joaompinto.vscode-graphviz",
    "lextudio.restructuredtext",
    "ms-python.python",
    "ms-python.vscode-pylance",
    "mutantdino.resource-monitor",
    "tamasfe.even-better-toml",
    "trond-snekvik.simple-rst"
  ],
  // Use 'forwardPorts' to make a list of ports inside the container available locally by default.
  // (Even without this, by default VS Code will notice when a process starts listening on an
  // unforwarded port, and will start forwarding that port automatically. Ref: remote.autoForwardPorts)
  // "forwardPorts": [],
  // Use 'postCreateCommand' to run commands after the container is created.
  // Note: esbonio and rstcheck are just for the restructuredtext vscode extension,
  //       so 'pip install' them with --user in a postCreateCommand:
  "postCreateCommand": "pip3 install --user esbonio rstcheck",
  // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
  "remoteUser": "vscode",
  "features": {
    "git": "os-provided",
    "github-cli": "latest"
  }
}