Skip to content

Commit 51d010e

Browse files
committed
fix: add missing roo-cline.allowedCommands configuration registration
1 parent abb8612 commit 51d010e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,14 @@
350350
"type": "string",
351351
"default": "",
352352
"description": "%settings.autoImportSettingsPath.description%"
353+
},
354+
"roo-cline.allowedCommands": {
355+
"type": "array",
356+
"items": {
357+
"type": "string"
358+
},
359+
"default": [],
360+
"description": "%settings.allowedCommands.description%"
353361
}
354362
}
355363
}

src/package.nls.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@
3232
"settings.vsCodeLmModelSelector.family.description": "The family of the language model (e.g. gpt-4)",
3333
"settings.customStoragePath.description": "Custom storage path. Leave empty to use the default location. Supports absolute paths (e.g. 'D:\\RooCodeStorage')",
3434
"settings.enableCodeActions.description": "Enable Roo Code quick fixes",
35-
"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."
35+
"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.",
36+
"settings.allowedCommands.description": "List of allowed commands that can be executed without prompting. Commands not in this list will require user confirmation before execution."
3637
}

0 commit comments

Comments
 (0)