From 8f5dd1f11e6ca1888fdbd3231c06d6df00aba5cc Mon Sep 17 00:00:00 2001 From: Joao Dias Date: Sat, 12 Nov 2016 14:14:20 +0100 Subject: [PATCH] chore(lint): enforce no var keyword rule --- tslint.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tslint.json b/tslint.json index 1aae7f7bce..d1bff34f45 100644 --- a/tslint.json +++ b/tslint.json @@ -8,6 +8,7 @@ "no-duplicate-imports": true, "no-duplicate-variable": true, "no-jasmine-focus": true, + "no-var-keyword": true, "require-internal-with-underscore": true, "semicolon": [true], "variable-name": [true, "ban-keywords"]