Skip to content

Commit

Permalink
updating vscode settings to apply schema validation (Azure#1626)
Browse files Browse the repository at this point in the history
  • Loading branch information
veronicagg authored and amarzavery committed Sep 5, 2017
1 parent f6bb794 commit b0c9242
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
// Place your settings in this file to overwrite default and user settings.
{
"json.schemas": [
"json.schemas":[
{
"fileMatch": [
"/**/swagger/*.json"
"fileMatch":[
"/**/specification/*.json"
],
"url": "https://raw.githubusercontent.com/Azure/autorest/master/schema/swagger-extensions.json"
"url":"https://raw.githubusercontent.com/Azure/autorest/master/schema/swagger-extensions.json"
},
{
"fileMatch": [
"fileMatch":[
"/**/examples/*.json"
],
"url": "https://raw.githubusercontent.com/Azure/autorest/master/schema/example-schema.json"
"url":"https://raw.githubusercontent.com/Azure/autorest/master/schema/example-schema.json"
},
{
"fileMatch": [
"fileMatch":[
"/**/composite*.json"
],
"url": "https://raw.githubusercontent.com/Azure/autorest/master/schema/composite-swagger.json"
"url":"https://raw.githubusercontent.com/Azure/autorest/master/schema/composite-swagger.json"
}
]
}

0 comments on commit b0c9242

Please sign in to comment.