-
Notifications
You must be signed in to change notification settings - Fork 1
/
.devcontainer.json
29 lines (29 loc) · 980 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
28
29
{
"dockerFile": "Dockerfile",
"build": {"args": {"BUILDPLATFORM": "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",
"ms-toolsai.jupyter"
],
"settings": {
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
}
}
}
}