generated from ludeeus/integration_blueprint
-
Notifications
You must be signed in to change notification settings - Fork 23
/
.devcontainer.json
46 lines (46 loc) · 1.48 KB
/
.devcontainer.json
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
43
44
45
46
{
"name": "pail23/stiebel_eltron_isg",
"image": "mcr.microsoft.com/vscode/devcontainers/python:3.12",
"postCreateCommand": "curl -LsSf https://astral.sh/uv/install.sh | sh && scripts/setup",
"forwardPorts": [
8123,
5678
],
"portsAttributes": {
"8123": {
"label": "Home Assistant",
"onAutoForward": "notify"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"github.vscode-pull-request-github",
"ryanluker.vscode-coverage-gutters",
"ms-python.vscode-pylance",
"ms-python.pylint",
"charliermarsh.ruff"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": false,
"files.trimTrailingWhitespace": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"python.defaultInterpreterPath": "/usr/local/bin/python",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
}
}
}
},
"remoteUser": "vscode",
"features": {},
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/home/vscode/.local/bin"
}
}