46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "Home Assistant Frontend",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": ".."
|
|
},
|
|
"appPort": "8124:8123",
|
|
"postCreateCommand": "sudo apt update && sudo apt upgrade -y && sudo apt install -y libpcap-dev",
|
|
"postStartCommand": "script/bootstrap",
|
|
"containerEnv": {
|
|
"DEV_CONTAINER": "1",
|
|
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
"runem.lit-plugin",
|
|
"github.vscode-pull-request-github",
|
|
"eamodio.gitlens"
|
|
],
|
|
"settings": {
|
|
"files.eol": "\n",
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"editor.renderWhitespace": "boundary",
|
|
"editor.rulers": [80],
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"files.trimTrailingWhitespace": true,
|
|
"terminal.integrated.shell.linux": "/usr/bin/zsh",
|
|
"gitlens.showWelcomeOnInstall": false,
|
|
"gitlens.showWhatsNewAfterUpgrades": false,
|
|
"workbench.startupEditor": "none"
|
|
}
|
|
}
|
|
}
|
|
}
|