diff options
| author | Jacob McDonnell <jacob@simplelittledream.com> | 2022-07-16 18:13:16 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@simplelittledream.com> | 2022-07-16 18:13:16 -0400 |
| commit | 8fad9a5ecddc88d57a531e4b0084544984f23d25 (patch) | |
| tree | 84954bc8219942aa56bc899330ccd0007bbe0ef0 /.config/coc/extensions/node_modules/coc-html/schemas/package.schema.json | |
| parent | 2887af7fcfb4d618dd13cf66ec2fbdbd84c7527c (diff) | |
Added profile and other missing configs
Diffstat (limited to '.config/coc/extensions/node_modules/coc-html/schemas/package.schema.json')
| -rw-r--r-- | .config/coc/extensions/node_modules/coc-html/schemas/package.schema.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.config/coc/extensions/node_modules/coc-html/schemas/package.schema.json b/.config/coc/extensions/node_modules/coc-html/schemas/package.schema.json new file mode 100644 index 0000000..a4d8715 --- /dev/null +++ b/.config/coc/extensions/node_modules/coc-html/schemas/package.schema.json @@ -0,0 +1,20 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "HTML contributions to package.json", + "type": "object", + "properties": { + "contributes": { + "type": "object", + "properties": { + "html.customData": { + "type": "array", + "markdownDescription": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its HTML support for the custom HTML tags, attributes and attribute values you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.", + "items": { + "type": "string", + "description": "Relative path to a HTML custom data file" + } + } + } + } + } +} |
