fix: add missing roo-cline.allowedCommands configuration registration

This commit is contained in:
hannesrudolph 2025-07-15 16:18:08 -06:00
parent abb8612fc9
commit 51d010e450
2 changed files with 10 additions and 1 deletions

View file

@ -350,6 +350,14 @@
"type": "string",
"default": "",
"description": "%settings.autoImportSettingsPath.description%"
},
"roo-cline.allowedCommands": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "%settings.allowedCommands.description%"
}
}
}

View file

@ -32,5 +32,6 @@
"settings.vsCodeLmModelSelector.family.description": "The family of the language model (e.g. gpt-4)",
"settings.customStoragePath.description": "Custom storage path. Leave empty to use the default location. Supports absolute paths (e.g. 'D:\\RooCodeStorage')",
"settings.enableCodeActions.description": "Enable Roo Code quick fixes",
"settings.autoImportSettingsPath.description": "Path to a RooCode configuration file to automatically import on extension startup. Supports absolute paths and paths relative to the home directory (e.g. '~/Documents/roo-code-settings.json'). Leave empty to disable auto-import."
"settings.autoImportSettingsPath.description": "Path to a RooCode configuration file to automatically import on extension startup. Supports absolute paths and paths relative to the home directory (e.g. '~/Documents/roo-code-settings.json'). Leave empty to disable auto-import.",
"settings.allowedCommands.description": "List of allowed commands that can be executed without prompting. Commands not in this list will require user confirmation before execution."
}