Add container settings for YAML extension to avoid Hass specific custom tags errors (#25504)

* Add settings for YAML extension to avoid !secret tag errors

* add other HA custom tags.
This commit is contained in:
Oncleben31 2019-07-27 10:43:18 +02:00 committed by Pascal Vizeli
parent 1f09967abb
commit 4d7fd8ae17
1 changed files with 8 additions and 1 deletions

View File

@ -19,6 +19,13 @@
"python.linting.enabled": true,
"files.trimTrailingWhitespace": true,
"editor.rulers": [80],
"terminal.integrated.shell.linux": "/bin/bash"
"terminal.integrated.shell.linux": "/bin/bash",
"yaml.customTags": [
"!secret scalar",
"!include_dir_named scalar",
"!include_dir_list scalar",
"!include_dir_merge_list scalar",
"!include_dir_merge_named scalar"
]
}
}