|
| 1 | +// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: |
| 2 | +{ |
| 3 | + "name": "Python 3", |
| 4 | + "build": { |
| 5 | + "dockerfile": "Dockerfile", |
| 6 | + "context": "..", |
| 7 | + "args": { |
| 8 | + "VARIANT": "3.9", |
| 9 | + "INSTALL_NODE": "true", |
| 10 | + "NODE_VERSION": "lts/*" |
| 11 | + } |
| 12 | + }, |
| 13 | + "settings": { |
| 14 | + "git.enableCommitSigning": true, |
| 15 | + "editor.formatOnSave": true, |
| 16 | + "python.pythonPath": "/usr/local/bin/python", |
| 17 | + "python.languageServer": "Pylance", |
| 18 | + "python.linting.enabled": true, |
| 19 | + "python.linting.pylintEnabled": true, |
| 20 | + "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", |
| 21 | + "python.formatting.blackPath": "/usr/local/py-utils/bin/black", |
| 22 | + "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", |
| 23 | + "python.linting.banditPath": "/usr/local/py-utils/bin/bandit", |
| 24 | + "python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", |
| 25 | + "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", |
| 26 | + "python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", |
| 27 | + "python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", |
| 28 | + "python.linting.pylintPath": "/usr/local/py-utils/bin/pylint", |
| 29 | + "python.testing.pytestArgs": [ |
| 30 | + "tests" |
| 31 | + ], |
| 32 | + "python.testing.unittestEnabled": false, |
| 33 | + "python.testing.nosetestsEnabled": false, |
| 34 | + "python.testing.pytestEnabled": true, |
| 35 | + "python.formatting.provider": "black" |
| 36 | + }, |
| 37 | + "extensions": [ |
| 38 | + "ms-python.python", |
| 39 | + "ms-python.vscode-pylance", |
| 40 | + "littlefoxteam.vscode-python-test-adapter", |
| 41 | + "ms-azuretools.vscode-docker", |
| 42 | + "davidanson.vscode-markdownlint", |
| 43 | + "bungcip.better-toml" |
| 44 | + ], |
| 45 | + "postCreateCommand": "make dev", |
| 46 | + "remoteUser": "vscode" |
| 47 | +} |
0 commit comments