forked from TUCAN-nest/TUCAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
29 lines (29 loc) · 1.14 KB
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.205.2/containers/docker-existing-dockerfile
{
"name": "TUCAN",
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.11",
"customizations": {
"vscode": {
"extensions": [
"ms-toolsai.jupyter",
"ms-python.python",
"ms-python.vscode-pylance",
"KevinRose.vsc-python-indent",
"streetsidesoftware.code-spell-checker",
"bungcip.better-toml",
"eamodio.gitlens",
"GitHub.copilot"
],
"settings": {
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"python.formatting.provider": "black",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.linting.mypyEnabled": true
}
}
},
"postCreateCommand": "pip install --upgrade pip && pip install -e .[dev,drawing]"
}