generated from custom-cards/boilerplate-card
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.devcontainer.json
39 lines (39 loc) · 1.04 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
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"name": "Fluid Level Background Card",
"image": "mcr.microsoft.com/devcontainers/python:dev-3.12-bookworm",
"context": "..",
"postCreateCommand": "scripts/setup",
"appPort": ["5000:5000"],
"forwardPorts": [8123, 5000],
"portsAttributes": {
"8123": {
"label": "Home Assistant",
"onAutoForward": "notify"
},
"5000": {
"label": "Dev build",
"onAutoForward": "openBrowser"
}
},
"extensions": [
"github.vscode-pull-request-github",
"eamodio.gitlens",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bierner.lit-html",
"runem.lit-plugin",
"auchenberg.vscode-browser-preview",
"davidanson.vscode-markdownlint",
"redhat.vscode-yaml"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"terminal.integrated.shell.linux": "/bin/bash",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}