-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
39 lines (39 loc) · 1.02 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
30
31
32
33
34
35
36
37
38
39
{
"name": "vscode",
"build": {
"dockerfile": "Dockerfile"
},
"remoteUser": "vscode",
"containerUser": "vscode",
"workspaceFolder": "/home/vscode/app/",
"runArgs": [
"--userns=keep-id",
"--volume=${localWorkspaceFolder}:/home/vscode/app/:Z",
"--volume=bootstrap-ml-project_venv:${containerWorkspaceFolder}/.venv:Z"
],
"settings": {
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.rulers": [
88
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"terminal.integrated.defaultProfile.linux": "bash"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vsliveshare.vsliveshare",
"eamodio.gitlens"
]
}