From 372375a6e320037525e9d08a2084a88d48ca707e Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Sun, 23 May 2021 23:56:56 +0200 Subject: [PATCH] Update package schema after configuration structure change --- sublime-package.json | 649 +++++++++++++++++++++---------------------- 1 file changed, 322 insertions(+), 327 deletions(-) diff --git a/sublime-package.json b/sublime-package.json index 23028d8..3997d3c 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -10,350 +10,345 @@ "definitions": { "PluginConfig": { "properties": { - "initializationOptions": { + "settings": { + "additionalProperties": false, "properties": { - "config": { + "vetur.ignoreProjectWarning": { + "type": "boolean", + "default": false, + "description": "Vetur will warn about not setup correctly for the project. You can disable it." + }, + "vetur.completion.autoImport": { + "type": "boolean", + "default": true, + "description": "Include completion for module export and auto import them." + }, + "vetur.completion.scaffoldSnippetSources": { "type": "object", - "additionalProperties": false, + "default": { + "workspace": "💼", + "user": "🗒️", + "vetur": "✌" + }, "properties": { - "vetur.ignoreProjectWarning": { - "type": "boolean", - "default": false, - "description": "Vetur will warn about not setup correctly for the project. You can disable it." - }, - "vetur.completion.autoImport": { - "type": "boolean", - "default": true, - "description": "Include completion for module export and auto import them." - }, - "vetur.completion.scaffoldSnippetSources": { - "type": "object", - "default": { - "workspace": "💼", - "user": "🗒️", - "vetur": "✌" - }, - "properties": { - "workspace": { - "type": "string", - "default": "💼", - "markdownDescription": "Show Scaffold Snippets from `/.vscode/vetur/snippets`." - }, - "user": { - "type": "string", - "default": "🗒️", - "markdownDescription": "Show Scaffold Snippets from `/User/snippets/vetur`." - }, - "vetur": { - "type": "string", - "default": "✌", - "description": "Show Scaffold Snippets bundled in Vetur." - } - }, - "markdownDescription": "Where Vetur sources Scaffold Snippets from and how to indicate them. Set a source to `\"\"` to disable it.\n\n- workspace: `/.vscode/vetur/snippets`.\n- user: `/User/snippets/vetur`.\n- vetur: Bundled in Vetur.\n\nThe default is:\n```\n\"completion.scaffoldSnippetSources\": {\n \"workspace\": \"💼\",\n \"user\": \"🗒️\",\n \"vetur\": \"✌\"\n}\n```\n\nAlternatively, you can do:\n\n```\n\"completion.scaffoldSnippetSources\": {\n \"workspace\": \"(W)\",\n \"user\": \"(U)\",\n \"vetur\": \"(V)\"\n}\n```\n\nRead more: https://vuejs.github.io/vetur/snippet.html." - }, - "vetur.completion.tagCasing": { - "type": "string", - "default": "kebab", - "enum": [ - "initial", - "kebab" - ], - "markdownEnumDescriptions": [ - "use the key in `components: {...}` as is for tag completion and do not force any casing", - "kebab-case completion for ``" - ], - "description": "Casing conversion for tag completion." - }, - "vetur.experimental.templateInterpolationService": { - "type": "boolean", - "default": false, - "description": "Enable template interpolation service that offers hover / definition / references in Vue interpolations." - }, - "vetur.format.enable": { - "type": "boolean", - "default": true, - "description": "Enable/disable the Vetur document formatter." - }, - "vetur.format.defaultFormatter.html": { - "type": "string", - "default": "prettier", - "enum": [ - "none", - "prettyhtml", - "js-beautify-html", - "prettier" - ], - "enumDescriptions": [ - "disable formatting", - "🚧 [DEPRECATED] prettyhtml", - "html formatter of js-beautify", - "prettier" - ], - "markdownDescription": "Default formatter for `