mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
style: 添加 biome-ignore 消除 noUnusedPrivateClassMembers 警告
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user