-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
33 lines (33 loc) · 801 Bytes
/
Copy path.devcontainer.json
File metadata and controls
33 lines (33 loc) · 801 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
31
32
33
{
"name": "ludeeus/pyuptimerobot",
"image": "mcr.microsoft.com/vscode/devcontainers/python:3-3.14",
"postCreateCommand": "scripts/setup",
"postStartCommand": "scripts/motd",
"features": {
"ghcr.io/va-h/devcontainers-features/uv:1": {
"version": "0.8.22",
"shellautocompletion": true
}
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
}
}
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"GitHub.copilot"
]
}
}
}