We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361fe17 commit e900782Copy full SHA for e900782
src/RICMsgHandler.ts
@@ -331,6 +331,9 @@ export default class RICMsgHandler {
331
);
332
}
333
334
+ // TODO - Investigate whether these lint errors are actually an issue
335
+ /* eslint-disable no-async-promise-executor */
336
+ /* eslint-disable @typescript-eslint/no-explicit-any */
337
async sendCommsMsg<T>(
338
msgPayload: Uint8Array,
339
msgDirection: CommsMsgTypeCode,
@@ -390,6 +393,8 @@ export default class RICMsgHandler {
390
393
});
391
394
return promise;
392
395
396
+ /* eslint-enable no-async-promise-executor */
397
+ /* eslint-enable @typescript-eslint/no-explicit-any */
398
399
msgTrackingTxCmdMsg<T>(
400
msgFrame: Uint8Array,
0 commit comments