forked from jcrist/msgspec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
26 lines (26 loc) · 792 Bytes
/
devcontainer.json
File metadata and controls
26 lines (26 loc) · 792 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": "jcrist/msgspec",
"image": "mcr.microsoft.com/devcontainers/python:3.12-bookworm",
"postCreateCommand": "scripts/install.sh",
"customizations": {
"vscode": {
"extensions": [
"charliermarsh.ruff",
"ms-python.python",
"ms-vscode.cpptools"
],
"settings": {
"C_Cpp.default.includePath": [
"/usr/local/include/**"
],
"C_Cpp.formatting": "disabled",
"python.testing.pytestArgs": [
"-v",
"tests/"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false
}
}
}
}