Skip to content

Commit

Permalink
Expose extensions.experimental.affinity in settings schema
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed Mar 24, 2022
1 parent f5014fd commit fc9e85e
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,20 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration)
'pub.name': false
}
},
'extensions.experimental.affinity': {
type: 'object',
markdownDescription: localize('extensions.affinity', "Configure an extension to execute in a different extension host process."),
patternProperties: {
'([a-z0-9A-Z][a-z0-9-A-Z]*)\\.([a-z0-9A-Z][a-z0-9-A-Z]*)$': {
type: 'integer',
default: 1
}
},
additionalProperties: false,
default: {
'pub.name': 1
}
},
[WORKSPACE_TRUST_EXTENSION_SUPPORT]: {
type: 'object',
scope: ConfigurationScope.APPLICATION,
Expand Down

0 comments on commit fc9e85e

Please sign in to comment.