From 2efc5b2e2ce135144fc35138208fd3406c5b051b Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Sun, 20 Jan 2019 17:46:43 +0100 Subject: [PATCH] chore(lint): ignore unused rule --- tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 135e724ef..c76ada1fd 100644 --- a/tslint.json +++ b/tslint.json @@ -9,6 +9,7 @@ "no-constant-condition": false, "no-extra-boolean-cast": false, "adjacent-overload-signatures": false, - "ter-no-proto": false + "ter-no-proto": false, + "callable-types": false } }