python/.devcontainer/devcontainer.json hinzugefügt
parent
b146913a7e
commit
e6299eb1bf
|
|
@ -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"
|
||||
}
|
||||
Loading…
Reference in New Issue