2019-06-23 19:18:33 +00:00
|
|
|
{
|
2019-09-03 23:02:42 +00:00
|
|
|
"name": "Home Assistant Dev",
|
|
|
|
"context": "..",
|
|
|
|
"dockerFile": "../Dockerfile.dev",
|
2021-02-08 15:16:40 +00:00
|
|
|
"postCreateCommand": "script/setup",
|
|
|
|
"postStartCommand": "script/bootstrap",
|
2024-04-11 05:26:30 +00:00
|
|
|
"containerEnv": {
|
|
|
|
"DEVCONTAINER": "1",
|
|
|
|
"PYTHONASYNCIODEBUG": "1"
|
|
|
|
},
|
2024-01-24 18:00:57 +00:00
|
|
|
// Port 5683 udp is used by Shelly integration
|
|
|
|
"appPort": ["8123:8123", "5683:5683/udp"],
|
2019-10-17 15:06:33 +00:00
|
|
|
"runArgs": ["-e", "GIT_EDITOR=code --wait"],
|
2023-07-20 11:11:43 +00:00
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
2023-11-27 13:38:59 +00:00
|
|
|
"charliermarsh.ruff",
|
2023-11-16 22:10:33 +00:00
|
|
|
"ms-python.pylint",
|
2023-07-20 11:11:43 +00:00
|
|
|
"ms-python.vscode-pylance",
|
|
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
|
|
"redhat.vscode-yaml",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"GitHub.vscode-pull-request-github"
|
|
|
|
],
|
|
|
|
// Please keep this file in sync with settings in home-assistant/.vscode/settings.default.json
|
|
|
|
"settings": {
|
2024-03-25 10:25:46 +00:00
|
|
|
"python.experiments.optOutFrom": ["pythonTestAdapter"],
|
2023-07-20 11:11:43 +00:00
|
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
|
|
"python.testing.pytestArgs": ["--no-cov"],
|
|
|
|
"editor.formatOnPaste": false,
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.formatOnType": true,
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
"terminal.integrated.profiles.linux": {
|
|
|
|
"zsh": {
|
|
|
|
"path": "/usr/bin/zsh"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"terminal.integrated.defaultProfile.linux": "zsh",
|
|
|
|
"yaml.customTags": [
|
|
|
|
"!input scalar",
|
|
|
|
"!secret scalar",
|
|
|
|
"!include_dir_named scalar",
|
|
|
|
"!include_dir_list scalar",
|
|
|
|
"!include_dir_merge_list scalar",
|
|
|
|
"!include_dir_merge_named scalar"
|
2023-11-27 13:38:59 +00:00
|
|
|
],
|
|
|
|
"[python]": {
|
|
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
|
|
}
|
2021-08-21 19:46:24 +00:00
|
|
|
}
|
2023-07-20 11:11:43 +00:00
|
|
|
}
|
2019-09-03 23:02:42 +00:00
|
|
|
}
|
|
|
|
}
|