-
-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathdevcontainer.json
More file actions
26 lines (26 loc) · 995 Bytes
/
devcontainer.json
File metadata and controls
26 lines (26 loc) · 995 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
{
"name": "HayBox",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.11",
"features": {
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"packages": "python3-pip,python3-venv,clang-format-14"
}
},
"onCreateCommand": "python3 -m pip install -U platformio && pio pkg install && pio pkg update -g -p https://github.com/maxgerhardt/platform-raspberrypi.git#5e87ae34ca025274df25b3303e9e9cb6c120123c",
"customizations": {
"vscode": {
"settings": {
"workbench.colorTheme": "Default Dark+",
"git.autofetch": true,
"editor.defaultFormatter": "xaver.clang-format",
"clang-format.executable": "clang-format-14",
"editor.formatOnSave": true
},
"extensions": [
"ms-vscode.cpptools",
"platformio.platformio-ide",
"xaver.clang-format"
]
}
}
}