1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-04-25 02:48:03 +01:00

Add devcontainer support (#1134)

This commit is contained in:
Pascal Vizeli
2019-06-24 14:48:10 +02:00
committed by GitHub
parent 7bd77c6e99
commit 72338eb5b8
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"name": "Hass.io dev",
"context": "..",
"dockerFile": "Dockerfile",
"extensions": [
"ms-python.python"
],
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true
}
}