添加yml 校验提示功能

This commit is contained in:
baozhoutao 2019-03-19 18:30:38 +08:00
parent 7c61d155e6
commit dcb724a16e
3 changed files with 12 additions and 1 deletions

2
.gitignore vendored
View File

@ -10,7 +10,7 @@
**/lib
**/.vscode
**/.vscode/launch.*
**/yarn.lock
settings.yml

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"redhat.vscode-yaml"
]
}

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"yaml.schemas": {
"https://steedos.github.io/schemas/app/schema.json": "/*.app.yml",
"https://steedos.github.io/schemas/object/schema.json": "/*.object.yml"
}
}