From a8ce681660864ab3ac7c1086c0b4262e40f24707 Mon Sep 17 00:00:00 2001 From: Jeremy Maitin-Shepard Date: Sun, 21 May 2017 16:29:02 -0700 Subject: [PATCH] chore: enable no-extra-semi lint rule --- examples/dependent-project/tslint.json | 7 ++----- tslint.json | 3 ++- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/dependent-project/tslint.json b/examples/dependent-project/tslint.json index 1669edc18..ab85f99b1 100644 --- a/examples/dependent-project/tslint.json +++ b/examples/dependent-project/tslint.json @@ -19,12 +19,10 @@ "spaces" ], "jsdoc-format": true, - "no-duplicate-key": true, "no-duplicate-variable": true, "no-eval": true, "no-internal-module": true, "no-trailing-whitespace": true, - "no-unused-variable": true, "no-var-keyword": false, "one-line": [ true, @@ -68,7 +66,6 @@ "check-type" ], "no-conditional-assignment": true, - "no-duplicate-key": true, "no-duplicate-case": true, "no-empty-character-class": true, "no-extra-boolean-cast": true, @@ -79,11 +76,11 @@ "no-invalid-regexp": true, "no-irregular-whitespace": true, "no-unexpected-multiline": true, - "no-unreachable": true, "use-isnan": true, "valid-typeof": true, "curly": true, "radix": true, - "no-shadowed-variable": true + "no-shadowed-variable": true, + "no-extra-semi": true } } diff --git a/tslint.json b/tslint.json index ee43d0379..ab85f99b1 100644 --- a/tslint.json +++ b/tslint.json @@ -80,6 +80,7 @@ "valid-typeof": true, "curly": true, "radix": true, - "no-shadowed-variable": true + "no-shadowed-variable": true, + "no-extra-semi": true } }