mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-23 12:47:16 +00:00
![dependabot-preview[bot]](/assets/img/avatar_default.png)
* Bump attrs from 19.1.0 to 19.3.0 Bumps [attrs](https://github.com/python-attrs/attrs) from 19.1.0 to 19.3.0. - [Release notes](https://github.com/python-attrs/attrs/releases) - [Changelog](https://github.com/python-attrs/attrs/blob/master/CHANGELOG.rst) - [Commits](https://github.com/python-attrs/attrs/compare/19.1.0...19.3.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Fix attr Deprecations
31 lines
746 B
JSON
31 lines
746 B
JSON
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
|
{
|
|
"name": "Hass.io dev",
|
|
"context": "..",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": "9123:8123",
|
|
"runArgs": [
|
|
"-e",
|
|
"GIT_EDITOR=code --wait",
|
|
"--privileged"
|
|
],
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
"esbenp.prettier-vscode"
|
|
],
|
|
"settings": {
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackArgs": [
|
|
"--target-version",
|
|
"py37"
|
|
],
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|
|
} |