From 93958d98e8fad242a59a89b9e2d992c804ad142b Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Wed, 29 Apr 2020 12:44:51 -0500 Subject: [PATCH] Make sure markdownDeprecationMessage shows up in package.json suggestions #91618 --- src/vs/workbench/api/common/configurationExtensionPoint.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vs/workbench/api/common/configurationExtensionPoint.ts b/src/vs/workbench/api/common/configurationExtensionPoint.ts index d57364a016ca0..17516f5f860cd 100644 --- a/src/vs/workbench/api/common/configurationExtensionPoint.ts +++ b/src/vs/workbench/api/common/configurationExtensionPoint.ts @@ -72,6 +72,10 @@ const configurationEntrySchema: IJSONSchema = { deprecationMessage: { type: 'string', description: nls.localize('scope.deprecationMessage', 'If set, the property is marked as deprecated and the given message is shown as an explanation.') + }, + markdownDeprecationMessage: { + type: 'string', + description: nls.localize('scope.markdownDeprecationMessage', 'If set, the property is marked as deprecated and the given message is shown as an explanation in the markdown format.') } } }