-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
27 lines (27 loc) · 933 Bytes
/
.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
{
"build": {"dockerfile": "Dockerfile", "args": {"platform": "linux/amd64"}},
"workspaceFolder": "/srv/repo",
"workspaceMount": "source=${localWorkspaceFolder},target=/srv/repo,type=bind",
"customizations": {
"vscode": {
"extensions": [
"ms-python.debugpy",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.mypy-type-checker",
"charliermarsh.ruff",
"tamasfe.even-better-toml",
"ms-azuretools.vscode-docker"
],
"settings": {
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
}
}
}
}