mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
chore: disable new lint rule
This commit is contained in:
parent
aca7df46b7
commit
9c2a069658
5 changed files with 17 additions and 13 deletions
|
@ -96,7 +96,7 @@ export class AdbDaemonSocketController
|
|||
await this.#dispatcher.sendPacket(
|
||||
AdbCommand.Close,
|
||||
this.localId,
|
||||
this.remoteId
|
||||
this.remoteId,
|
||||
);
|
||||
|
||||
// Don't `dispose` here, we need to wait for `CLSE` response packet.
|
||||
|
@ -118,8 +118,8 @@ export class AdbDaemonSocketController
|
|||
size(chunk) {
|
||||
return chunk.byteLength;
|
||||
},
|
||||
}
|
||||
)
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
this.writable = pipeFrom(
|
||||
|
@ -132,13 +132,13 @@ export class AdbDaemonSocketController
|
|||
AdbCommand.Write,
|
||||
this.localId,
|
||||
this.remoteId,
|
||||
chunk
|
||||
chunk,
|
||||
);
|
||||
await this.#writePromise.promise;
|
||||
},
|
||||
})
|
||||
}),
|
||||
),
|
||||
new DistributionStream(this.#dispatcher.options.maxPayloadSize)
|
||||
new DistributionStream(this.#dispatcher.options.maxPayloadSize),
|
||||
);
|
||||
|
||||
this.#socket = new AdbDaemonSocket(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue