mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
Expose gitCoAuthor setting in settings.json and document it
This commit is contained in:
@@ -992,6 +992,7 @@ export async function loadCliConfig(
|
||||
enableToolOutputTruncation: settings.tools?.enableToolOutputTruncation,
|
||||
eventEmitter: appEvents,
|
||||
useSmartEdit: argv.useSmartEdit ?? settings.useSmartEdit,
|
||||
gitCoAuthor: settings.git?.gitCoAuthor,
|
||||
output: {
|
||||
format: outputSettingsFormat,
|
||||
},
|
||||
|
||||
@@ -933,6 +933,58 @@ const SETTINGS_SCHEMA = {
|
||||
},
|
||||
},
|
||||
|
||||
git: {
|
||||
type: 'object',
|
||||
label: 'Git',
|
||||
category: 'Git',
|
||||
requiresRestart: false,
|
||||
default: {},
|
||||
description: 'Git-related settings.',
|
||||
showInDialog: false,
|
||||
properties: {
|
||||
gitCoAuthor: {
|
||||
type: 'object',
|
||||
label: 'Git Co-Author',
|
||||
category: 'Git',
|
||||
requiresRestart: false,
|
||||
default: {},
|
||||
description:
|
||||
'Settings for automatic Co-authored-by trailer in git commits.',
|
||||
showInDialog: false,
|
||||
properties: {
|
||||
enabled: {
|
||||
type: 'boolean',
|
||||
label: 'Enable Git Co-Author',
|
||||
category: 'Git',
|
||||
requiresRestart: false,
|
||||
default: true,
|
||||
description:
|
||||
'Automatically add Co-authored-by trailer to git commit messages.',
|
||||
showInDialog: true,
|
||||
},
|
||||
name: {
|
||||
type: 'string',
|
||||
label: 'Co-Author Name',
|
||||
category: 'Git',
|
||||
requiresRestart: false,
|
||||
default: 'Qwen-Coder' as string | undefined,
|
||||
description: 'The name to use in the Co-authored-by trailer.',
|
||||
showInDialog: true,
|
||||
},
|
||||
email: {
|
||||
type: 'string',
|
||||
label: 'Co-Author Email',
|
||||
category: 'Git',
|
||||
requiresRestart: false,
|
||||
default: 'qwen-coder@alibabacloud.com' as string | undefined,
|
||||
description: 'The email to use in the Co-authored-by trailer.',
|
||||
showInDialog: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
mcp: {
|
||||
type: 'object',
|
||||
label: 'MCP',
|
||||
|
||||
Reference in New Issue
Block a user