json package.json: Use tabs instead of spaces

This commit is contained in:
Martin Aeschlimann 2016-01-28 17:05:57 +01:00
parent ead959c5d4
commit 0c72437701

View file

@ -83,41 +83,41 @@
"url": "vscode://schemas/snippets"
}
],
"configuration": {
"id": "json",
"order": 20,
"type": "object",
"title": "JSON configuration",
"properties" : {
"json.schemas" : {
"type": "array",
"description": "Associate schemas to JSON files in the current project",
"items": {
"type": "object",
"default": { "fileMatch": [ "{{/myfile}}" ], "url": "{{schemaURL}}" },
"properties": {
"url": {
"type": "string",
"default": "/user.schema.json",
"description": "A URL to a schema or a relative path to a schema in the current directory"
},
"fileMatch": {
"type": "array",
"items": {
"type": "string",
"default": "MyFile.json",
"description": "A file pattern that can contain '*' to match against when resolving JSON files to schemas."
},
"minItems": 1,
"description": "An array of file patterns to match against when resolving JSON files to schemas."
},
"schema": {
"$ref": "http://json-schema.org/draft-04/schema#",
"description": "The schema definition for the given URL. The schema only needs to be provided to avoid accesses to the schema URL."
}
}
}
}
"configuration": {
"id": "json",
"order": 20,
"type": "object",
"title": "JSON configuration",
"properties" : {
"json.schemas" : {
"type": "array",
"description": "Associate schemas to JSON files in the current project",
"items": {
"type": "object",
"default": { "fileMatch": [ "{{/myfile}}" ], "url": "{{schemaURL}}" },
"properties": {
"url": {
"type": "string",
"default": "/user.schema.json",
"description": "A URL to a schema or a relative path to a schema in the current directory"
},
"fileMatch": {
"type": "array",
"items": {
"type": "string",
"default": "MyFile.json",
"description": "A file pattern that can contain '*' to match against when resolving JSON files to schemas."
},
"minItems": 1,
"description": "An array of file patterns to match against when resolving JSON files to schemas."
},
"schema": {
"$ref": "http://json-schema.org/draft-04/schema#",
"description": "The schema definition for the given URL. The schema only needs to be provided to avoid accesses to the schema URL."
}
}
}
}
}
}
},