From ec15ebe5c5fb30e638cc721ca916c84186b1d1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jovan=20Kruni=C4=87?= Date: Tue, 8 Sep 2020 08:32:26 +0000 Subject: [PATCH] fix: exclude test dir and its subdirs for tslint Closes #34 --- tslint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 30784921..3b13d8c1 100644 --- a/tslint.json +++ b/tslint.json @@ -137,7 +137,7 @@ }, "linterOptions": { "exclude": [ - "test/**/*.ts" + "../../../test/**" ] } }