From 8fad9a5ecddc88d57a531e4b0084544984f23d25 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 16 Jul 2022 18:13:16 -0400 Subject: Added profile and other missing configs --- .../coc-html/schemas/package.schema.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .config/coc/extensions/node_modules/coc-html/schemas/package.schema.json (limited to '.config/coc/extensions/node_modules/coc-html/schemas/package.schema.json') 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" + } + } + } + } + } +} -- cgit v1.2.3