mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-23 20:57:15 +00:00

* Fix symbolic link issue with snapshot * Add tests * fix symlink * add encrypted test * Modify x
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
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": {
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"python.pythonPath": "/usr/local/bin/python3",
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackArgs": ["--target-version", "py38"],
|
|
"python.formatting.blackPath": "/usr/local/bin/black",
|
|
"python.linting.banditPath": "/usr/local/bin/bandit",
|
|
"python.linting.flake8Path": "/usr/local/bin/flake8",
|
|
"python.linting.mypyPath": "/usr/local/bin/mypy",
|
|
"python.linting.pylintPath": "/usr/local/bin/pylint",
|
|
"python.linting.pydocstylePath": "/usr/local/bin/pydocstyle"
|
|
}
|
|
}
|