|
6 | 6 | "dockerComposeFile": "docker-compose.yml",
|
7 | 7 | "service": "app",
|
8 | 8 | "workspaceFolder": "/workspace",
|
9 |
| - |
10 | 9 | // Configure tool-specific properties.
|
11 | 10 | "customizations": {
|
12 | 11 | // Configure properties specific to VS Code.
|
|
15 | 14 | "settings": {
|
16 | 15 | "python.defaultInterpreterPath": "/usr/local/bin/python",
|
17 | 16 | "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 |
| - "python.testing.pytestPath": "/usr/local/py-utils/bin/pytest" |
| 17 | + "python.linting.pylintEnabled": true |
29 | 18 | },
|
30 |
| - |
31 | 19 | // Add the IDs of extensions you want installed when the container is created.
|
32 | 20 | "extensions": [
|
33 | 21 | "ms-python.python",
|
|
36 | 24 | ]
|
37 | 25 | }
|
38 | 26 | },
|
39 |
| - |
40 | 27 | // Use 'forwardPorts' to make a list of ports inside the container available locally.
|
41 | 28 | // This can be used to network with other containers or the host.
|
42 | 29 | // "forwardPorts": [161],
|
43 |
| - |
44 | 30 | // Use 'postCreateCommand' to run commands after the container is created.
|
45 | 31 | "postCreateCommand": "bash ./.devcontainer/init-devcontainer.bash",
|
46 |
| - |
47 | 32 | // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
48 | 33 | "remoteUser": "vscode"
|
49 | 34 | }
|
0 commit comments