Fixes invalid JSON files and whitespace corrections in YAML files (#26396)

This commit is contained in:
Franck Nijhof 2019-09-04 01:02:42 +02:00 committed by Paulus Schoutsen
parent b6cd5ab27b
commit 9035efee10
11 changed files with 142 additions and 149 deletions

View File

@ -5,10 +5,7 @@
"dockerFile": "../Dockerfile.dev", "dockerFile": "../Dockerfile.dev",
"postCreateCommand": "pip3 install -e .", "postCreateCommand": "pip3 install -e .",
"appPort": 8123, "appPort": 8123,
"runArgs": [ "runArgs": ["-e", "GIT_EDITOR=\"code --wait\""],
"-e",
"GIT_EDITOR=\"code --wait\""
],
"extensions": [ "extensions": [
"ms-python.python", "ms-python.python",
"ms-azure-devops.azure-pipelines", "ms-azure-devops.azure-pipelines",

12
.vscode/tasks.json vendored
View File

@ -7,7 +7,7 @@
"command": "hass -c ./config", "command": "hass -c ./config",
"group": { "group": {
"kind": "test", "kind": "test",
"isDefault": true, "isDefault": true
}, },
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",
@ -21,7 +21,7 @@
"command": "pytest --timeout=10 tests", "command": "pytest --timeout=10 tests",
"group": { "group": {
"kind": "test", "kind": "test",
"isDefault": true, "isDefault": true
}, },
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",
@ -35,7 +35,7 @@
"command": "flake8 homeassistant tests", "command": "flake8 homeassistant tests",
"group": { "group": {
"kind": "test", "kind": "test",
"isDefault": true, "isDefault": true
}, },
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",
@ -47,12 +47,10 @@
"label": "Pylint", "label": "Pylint",
"type": "shell", "type": "shell",
"command": "pylint homeassistant", "command": "pylint homeassistant",
"dependsOn": [ "dependsOn": ["Install all Requirements"],
"Install all Requirements"
],
"group": { "group": {
"kind": "test", "kind": "test",
"isDefault": true, "isDefault": true
}, },
"presentation": { "presentation": {
"reveal": "always", "reveal": "always",

View File

@ -198,4 +198,3 @@ pck:
pck: pck:
description: PCK command (without address header) description: PCK command (without address header)
example: 'PIN4' example: 'PIN4'

View File

@ -8,4 +8,3 @@
"dependencies": [], "dependencies": [],
"codeowners": ["@squishykid"] "codeowners": ["@squishykid"]
} }