.devcontainer/devcontainer.json hinzugefügt

feature/interestingPoints
Dennis Eggen 2025-10-26 13:02:56 +01:00
parent cf367a38d7
commit fa6b24fc8d
1 changed files with 17 additions and 0 deletions

View File

@ -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"
}