forked from wilhelm-lab/koina
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
30 lines (30 loc) · 788 Bytes
/
.devcontainer.json
File metadata and controls
30 lines (30 loc) · 788 Bytes
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
30
{
"dockerComposeFile": "docker-compose.yml",
"service": "develop",
"remoteUser": "devuser",
"containerUser": "devuser",
"shutdownAction": "none",
"workspaceFolder": "/workspace/koina",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.pylint",
"ms-python.black-formatter",
"pbkit.vscode-pbkit",
"ms-toolsai.jupyter",
"ms-azuretools.vscode-docker",
"Vue.volar",
"eamodio.gitlens"
],
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
"python.formatting.provider": "black",
"python.venvPath": "~/.cache/pypoetry/virtualenvs"
}
}
}
}