enumDescriptions should be included in extension package.json schema. Fixes #55095

This commit is contained in:
Martin Aeschlimann 2018-07-26 11:28:10 +02:00
parent d6f69db966
commit f3710619ea

View file

@ -46,6 +46,13 @@ const configurationEntrySchema: IJSONSchema = {
nls.localize('scope.resource.description', "Resource specific configuration, which can be configured in the User, Workspace or Folder settings.")
],
description: nls.localize('scope.description', "Scope in which the configuration is applicable. Available scopes are `window` and `resource`.")
},
enumDescriptions: {
type: 'array',
items: {
type: 'string',
},
description: nls.localize('scope.enumDescriptions', 'Descriptions for enum values')
}
}
}