From 645e09e8597e35ad2d8c6675e67c015176586639 Mon Sep 17 00:00:00 2001 From: Crawl Date: Sat, 21 Mar 2020 09:54:58 +0100 Subject: [PATCH] chore(ci): buggy void return rule --- tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 61a760850..a2facf751 100644 --- a/tslint.json +++ b/tslint.json @@ -23,6 +23,7 @@ "no-unnecessary-class": false, "array-type": [true, "array"], - "no-any-union": false + "no-any-union": false, + "void-return": false } }