diff --git a/README.md b/README.md index 9184a6be..316505de 100755 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ The following settings are supported: * `yaml.hover`: Enable/disable hover * `yaml.completion`: Enable/disable autocompletion * `yaml.schemas`: Helps you associate schemas with files in a glob pattern +* `yaml.schemaStore.enable`: When set to true the YAML language server will pull in all available schemas from [JSON Schema Store](http://schemastore.org/json/) * `yaml.customTags`: Array of custom tags that the parser will validate against. It has two ways to be used. Either an item in the array is a custom tag such as "!Ref" and it will automatically map !Ref to scalar or you can specify the type of the object !Ref should be e.g. "!Ref sequence". The type of object can be either scalar (for strings and booleans), sequence (for arrays), map (for objects). * `[yaml]`: VSCode-YAML adds default configuration for all yaml files. More specifically it converts tabs to spaces to ensure valid yaml, sets the tab size, and allows live typing autocompletion. These settings can be modified via the corresponding settings inside the `[yaml]` section in the settings: * `editor.insertSpaces` diff --git a/package.json b/package.json index d54aa721..fd38bbfa 100755 --- a/package.json +++ b/package.json @@ -127,6 +127,11 @@ "type": "array", "default": [], "description": "Custom tags for the parser to use" + }, + "yaml.schemaStore.enable": { + "type": "boolean", + "default": true, + "description": "Automatically pull available YAML schemas from JSON Schema Store" } } },