style: 添加 biome-ignore 消除 noUnusedPrivateClassMembers 警告

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
claude-code-best
2026-05-01 22:01:54 +08:00
parent 491c16da25
commit ff2074c798
2 changed files with 2 additions and 0 deletions

View File

@@ -72,6 +72,7 @@ export class BridgeClient implements SocketClient {
/** The request_id of the current pending pairing broadcast. */
private pendingPairingRequestId: string | undefined
/** Whether a pairing broadcast is in progress (multiple extensions, no persisted selection). */
// biome-ignore lint/correctness/noUnusedPrivateClassMembers: state flag — written in multiple places, read planned for future routing logic
private pairingInProgress = false
/** The deviceId from a previous persisted pairing. */
private persistedDeviceId: string | undefined

View File

@@ -118,6 +118,7 @@ export class ACPClient {
reject: (err: Error) => void
timer: ReturnType<typeof setTimeout>
} | null = null
// biome-ignore lint/correctness/noUnusedPrivateClassMembers: state flag — tracks active session target for pending operations
private pendingSessionTarget: string | null = null
private connectResolve: ((value: undefined) => void) | null = null