Skip to content

Commit ee50bdd

Browse files
committed
fix excluded sources issue
1 parent 63b052b commit ee50bdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class AutoDebugController implements vscode.Disposable {
3939
constructor(config?: Partial<AutoDebugConfig>, client?: any, encryptionKey?: Buffer) {
4040
this.config = {
4141
enabled: true,
42-
excludedSources: ['spell-checker'], // Common sources to exclude
42+
excludedSources: [], // No default exclusions - let users configure as needed
4343
severityFilter: ['error'], // Only auto-fix errors, not warnings
4444
...config,
4545
}

0 commit comments

Comments
 (0)