forked from klejejs/python-thermia-online-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
25 lines (25 loc) · 728 Bytes
/
.devcontainer.json
File metadata and controls
25 lines (25 loc) · 728 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
{
"name": "Python Thermia Online API",
"image": "mcr.microsoft.com/devcontainers/python:1-3.12",
"postCreateCommand": {
"setup": "./scripts/setup.sh",
"git": "git config --global --add safe.directory /workspaces/python-thermia-online-api"
},
"remoteUser": "vscode",
"customizations": {
"vscode": {
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.formatting.provider": "black",
"editor.defaultFormatter": "ms-python.black-formatter"
},
"extensions": [
"GitHub.copilot",
"github.vscode-pull-request-github",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter"
]
}
}
}