You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -60,7 +59,11 @@ export function registerConfiguration(): IDisposable {
60
59
'settingsSync.ignoredExtensions': {
61
60
'type': 'array',
62
61
markdownDescription: localize('settingsSync.ignoredExtensions',"List of extensions to be ignored while synchronizing. The identifier of an extension is always `${publisher}.${name}`. For example: `vscode.csharp`."),
63
-
$ref: ignoredExtensionsSchemaId,
62
+
items: [{
63
+
type: 'string',
64
+
pattern: EXTENSION_IDENTIFIER_PATTERN,
65
+
errorMessage: localize('app.extension.identifier.errorMessage',"Expected format '${publisher}.${name}'. Example: 'vscode.csharp'.")
66
+
}],
64
67
'default': [],
65
68
'scope': ConfigurationScope.APPLICATION,
66
69
uniqueItems: true,
@@ -102,11 +105,6 @@ export function registerConfiguration(): IDisposable {
0 commit comments