mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 09:17:53 +00:00
cleanup unused allowBuildArtifacts (#1010)
This commit is contained in:
@@ -62,7 +62,6 @@ describe('loggers', () => {
|
||||
}),
|
||||
getTelemetryLogUserPromptsEnabled: () => true,
|
||||
getFileFilteringRespectGitIgnore: () => true,
|
||||
getFileFilteringAllowBuildArtifacts: () => false,
|
||||
getDebugMode: () => true,
|
||||
getMcpServers: () => ({
|
||||
'test-server': {
|
||||
@@ -90,7 +89,6 @@ describe('loggers', () => {
|
||||
code_assist_enabled: false,
|
||||
log_user_prompts_enabled: true,
|
||||
file_filtering_respect_git_ignore: true,
|
||||
file_filtering_allow_build_artifacts: false,
|
||||
debug_mode: true,
|
||||
mcp_servers: 'test-server',
|
||||
},
|
||||
|
||||
@@ -89,8 +89,6 @@ export function logCliConfiguration(config: Config): void {
|
||||
log_user_prompts_enabled: config.getTelemetryLogUserPromptsEnabled(),
|
||||
file_filtering_respect_git_ignore:
|
||||
config.getFileFilteringRespectGitIgnore(),
|
||||
file_filtering_allow_build_artifacts:
|
||||
config.getFileFilteringAllowBuildArtifacts(),
|
||||
debug_mode: config.getDebugMode(),
|
||||
mcp_servers: mcpServers ? Object.keys(mcpServers).join(',') : '',
|
||||
};
|
||||
|
||||
@@ -67,7 +67,6 @@ export interface CliConfigEvent {
|
||||
vertex_ai_enabled: boolean;
|
||||
log_user_prompts_enabled: boolean;
|
||||
file_filtering_respect_git_ignore: boolean;
|
||||
file_filtering_allow_build_artifacts: boolean;
|
||||
}
|
||||
|
||||
export type TelemetryEvent =
|
||||
|
||||
Reference in New Issue
Block a user