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