diff --git a/python/.devcontainer/devcontainer.json b/python/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c1ea9fc --- /dev/null +++ b/python/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "Python 3.11 Dev Container", + "dockerFile": "Dockerfile", + "mounts": [ + "source=${localWorkspaceFolder},target=/workspace,type=bind" + ], + "settings": { + "python.linting.enabled": true, + "python.linting.pylintEnabled": true, + "python.formatting.provider": "black" + }, + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ], + "postCreateCommand": "pip install --upgrade pip" +}