-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.devcontainer.json
More file actions
45 lines (45 loc) · 1.42 KB
/
.devcontainer.json
File metadata and controls
45 lines (45 loc) · 1.42 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
43
44
45
{
"name": "Home Assistant Unraid Integration",
"image": "mcr.microsoft.com/devcontainers/python:3.14",
"features": {
"ghcr.io/devcontainers-extra/features/uv:1": {},
"ghcr.io/devcontainers/features/node:2": {}
},
"postCreateCommand": "npm install -g @anthropic-ai/claude-code && ./script/setup && ./script/upgrade",
"forwardPorts": [8123],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"charliermarsh.ruff",
"github.vscode-pull-request-github",
"anthropic.claude-code"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["tests"],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash"
}
}
}
}