Reenable tslint checks for unused variables and expressions.

This commit is contained in:
Hristo Deshev
2016-02-23 16:51:05 +02:00
parent e23e234f59
commit c3331c0efd

View File

@ -15,14 +15,14 @@
"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": [false], "no-unused-variable": [true],
"no-duplicate-variable": true, "no-duplicate-variable": true,
"no-bitwise": false, "no-bitwise": false,
"no-string-literal": false, "no-string-literal": false,
"no-trailing-whitespace": false, "no-trailing-whitespace": false,
"no-unreachable": false, "no-unreachable": false,
"no-unused-expression": false, "no-unused-expression": true,
"no-use-before-declare": false, "no-use-before-declare": false,
"no-var-requires": false, "no-var-requires": false,
"one-line": [false, "one-line": [false,