-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdevcontainer.json
More file actions
54 lines (54 loc) · 1.65 KB
/
devcontainer.json
File metadata and controls
54 lines (54 loc) · 1.65 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Python",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "latest",
"installTools": false,
"installJupyterlab": false,
"toolsToInstall": "mypy"
},
"ghcr.io/va-h/devcontainers-features/uv:1": {},
"ghcr.io/devcontainers-contrib/features/shfmt:1": {},
"ghcr.io/dhoeric/features/hadolint:1": {},
"ghcr.io/michidk/devcontainers-features/typos:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true
}
},
"postCreateCommand": ".devcontainer/postCreateCommand.sh",
"remoteUser": "vscode",
"containerUser": "vscode",
"customizations": {
"vscode": {
"extensions": [
"charliermarsh.ruff",
"exiasr.hadolint",
"foxundermoon.shell-format",
"GitHub.copilot",
"GitHub.vscode-github-actions",
"Gruntfuggly.todo-tree",
"ms-azuretools.vscode-docker",
"ms-python.mypy-type-checker",
"njpwerner.autodocstring",
"oderwat.indent-rainbow",
"tamasfe.even-better-toml",
"tekumara.typos-vscode",
"timonwong.shellcheck",
"-ms-python.vscode-pylance"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh",
"python.defaultInterpreterPath": "./.venv/bin/python",
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
}
}
}
}
}