Skip to content

Commit 8d0bd85

Browse files
committed
fix: suppress TypeScript unused variable error in AutoConnectService
Add @ts-expect-error comment to _configManager variable which is preserved for future use when config options are added. Type check: 0 errors
1 parent 92c61aa commit 8d0bd85

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/services/AutoConnectService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { SavedPrinterMatch, AutoConnectDecision } from '../types/printer';
2222
export class AutoConnectService extends EventEmitter {
2323
private static instance: AutoConnectService | null = null;
2424
// eslint-disable-next-line @typescript-eslint/no-unused-vars
25+
// @ts-expect-error - ConfigManager will be used when config options are added
2526
private readonly _configManager = getConfigManager();
2627

2728
private constructor() {

0 commit comments

Comments
 (0)