json-rpc: Remove tslint

This commit is contained in:
willclarktech 2020-06-24 15:50:03 +02:00
parent d141924b02
commit 254faa935e
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7
2 changed files with 0 additions and 5 deletions

View File

@ -17,13 +17,11 @@ function makeSimpleMessagingConnection(
): SimpleMessagingConnection<JsonRpcRequest, JsonRpcResponse> {
const producer: Producer<JsonRpcResponse> = {
start: (listener) => {
// tslint:disable-next-line:no-object-mutation
worker.onmessage = (event) => {
listener.next(parseJsonRpcResponse(event.data));
};
},
stop: () => {
// tslint:disable-next-line:no-object-mutation
worker.onmessage = null;
},
};

View File

@ -1,3 +0,0 @@
{
"extends": "../../tslint.json"
}