Skip to content

Commit

Permalink
[gen_schemas] Update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Jan 7, 2025
1 parent 4668245 commit 023f8a1
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions schemas/_generated/sourcekit.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,46 @@
"markdownDescription": "Override the default path of the folder containing the Swift executables. The default is to look in the `PATH` environment variable. This path is also used to search for other executables used by the extension like `sourcekit-lsp` and `lldb`.",
"type": "string"
},
"swift.pluginPermissions": {
"default": {},
"markdownDescription": "Configures a list of permissions to be used when running a command plugins.\n\nPermissions objects are defined in the form:\n\n`{ \"PluginName:command\": { \"allowWritingToPackageDirectory\": true } }`.\n\nA key of `PluginName:command` will set permissions for a specific command. A key of `PluginName` will set permissions for all commands in the plugin.",
"patternProperties": {
"^([a-zA-Z0-9_-]+(:[a-zA-Z0-9_-]+)?)$": {
"properties": {
"allowNetworkConnections": {
"description": "Allow the plugin to make network connections",
"type": "string"
},
"allowWritingToDirectory": {
"oneOf": [
{
"description": "Allow the plugin to write to an additional directory",
"type": "string"
},
{
"description": "Allow the plugin to write to additional directories",
"items": {
"type": "string"
},
"type": "array"
}
]
},
"allowWritingToPackageDirectory": {
"description": "Allow the plugin to write to the package directory",
"type": "boolean"
},
"disableSandbox": {
"description": "Disable using the sandbox when executing plugins",
"type": "boolean"
}
},
"type": "object"
}
},
"scope": "machine-overridable",
"type": "object"
},
"swift.sanitizer": {
"default": "off",
"enum": [
Expand Down

0 comments on commit 023f8a1

Please sign in to comment.