Disable no-unused-variables in tslint to avoid a stack overflow.

This commit is contained in:
Hristo Deshev
2015-09-18 15:31:29 +03:00
committed by Vladimir Enchev
parent 54bc3c6692
commit 0de81e767c

View File

@ -15,7 +15,7 @@
"variable-name": [false, "allow-leading-underscore"], "variable-name": [false, "allow-leading-underscore"],
"no-empty": true, "no-empty": true,
"no-eval": true, "no-eval": true,
"no-unused-variable": [true], "no-unused-variable": [false],
"no-duplicate-variable": true, "no-duplicate-variable": true,
"CONSIDER THE FOLLOWING ONE": false, "CONSIDER THE FOLLOWING ONE": false,