Skip to content

Commit 88fcafa

Browse files
committed
remove useless global sorces storage
1 parent 589f812 commit 88fcafa

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/core/src/amazonq/autoDebug/activation.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ export function getDefaultAutoDebugConfig(): Partial<AutoDebugConfig> {
4141

4242
return {
4343
enabled: config.get<boolean>('enabled', true),
44-
autoReportThreshold: config.get<number>('autoReportThreshold', 1),
45-
includedSources: config.get<string[]>('includedSources', []),
4644
excludedSources: config.get<string[]>('excludedSources', ['spell-checker']),
47-
severityFilter: config.get<('error' | 'warning' | 'info' | 'hint')[]>('severityFilter', ['error', 'warning']),
48-
debounceMs: config.get<number>('debounceMs', 1000),
45+
severityFilter: config.get<('error' | 'warning' | 'info' | 'hint')[]>('severityFilter', ['error']),
4946
}
5047
}

0 commit comments

Comments
 (0)