mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-04-22 08:22:48 +00:00
27 lines
819 B
JSON
27 lines
819 B
JSON
{
|
|
"name": "Supervisor dev",
|
|
"context": "..",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": "9123:8123",
|
|
"postCreateCommand": "pre-commit install",
|
|
"runArgs": ["-e", "GIT_EDITOR=code --wait", "--privileged"],
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-python.vscode-pylance",
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
"esbenp.prettier-vscode"
|
|
],
|
|
"settings": {
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackArgs": ["--target-version", "py38"],
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|
|
}
|