-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
42 lines (42 loc) · 1.5 KB
/
devcontainer.json
File metadata and controls
42 lines (42 loc) · 1.5 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
{
"name": "workspace",
"image": "ghcr.io/vectorgrp/vaf:latest",
"customizations": {
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"[cpp]": {
"editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"editor.formatOnSave": true,
"json.format.keepLines": true,
"cmake.configureOnEdit": true,
"cmake.configureOnOpen": false,
"C_Cpp.intelliSenseEngine": "disabled",
"ruff.exclude": [
".pdm-build"
],
"ruff.nativeServer": true,
"python.defaultInterpreterPath": "/home/vector/.local/share/uv/tools/vaf/bin/python3",
"python.terminal.activateEnvironment": false
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"vectorgroup.vaf",
"charliermarsh.ruff",
"llvm-vs-code-extensions.vscode-clangd",
"ms-python.python",
"ms-vscode.cmake-tools",
"ms-vscode.cpptools",
"yzhang.markdown-all-in-one"
]
}
},
"capAdd": [
"NET_ADMIN",
"NET_RAW"
]
}