json-rpc: Remove tslint

This commit is contained in:
willclarktech
2020-06-24 15:50:03 +02:00
parent d141924b02
commit 254faa935e
2 changed files with 0 additions and 5 deletions
@@ -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;
},
};
-3
View File
@@ -1,3 +0,0 @@
{
"extends": "../../tslint.json"
}