From 0de81e767ca689bbee4f2d6bd8b97fd7605f1a45 Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Fri, 18 Sep 2015 15:31:29 +0300 Subject: [PATCH] Disable no-unused-variables in tslint to avoid a stack overflow. --- build/tslint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tslint.json b/build/tslint.json index de5a59c87..c55045104 100644 --- a/build/tslint.json +++ b/build/tslint.json @@ -15,7 +15,7 @@ "variable-name": [false, "allow-leading-underscore"], "no-empty": true, "no-eval": true, - "no-unused-variable": [true], + "no-unused-variable": [false], "no-duplicate-variable": true, "CONSIDER THE FOLLOWING ONE": false,