From fc7b7c83b339998e972522541b18464506e179f4 Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Wed, 24 Apr 2019 10:41:17 -0700 Subject: [PATCH 1/2] Exclude tests/cases from tslint --- tslint.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tslint.json b/tslint.json index 5952c770c5e..c43f84b69ae 100644 --- a/tslint.json +++ b/tslint.json @@ -1,6 +1,11 @@ { "extends": "tslint:latest", "rulesDirectory": "built/local/tslint/rules", + "linterOptions": { + "exclude": [ + "tests/cases/**/*" + ] + }, "rules": { "no-unnecessary-type-assertion": true, From 7ba1c8aba2e2c7b047d077f8c75c7f7f5c0207fc Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Wed, 24 Apr 2019 11:35:37 -0700 Subject: [PATCH 2/2] Exclude everything in tests --- tslint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index c43f84b69ae..5b75ed1a55b 100644 --- a/tslint.json +++ b/tslint.json @@ -3,7 +3,7 @@ "rulesDirectory": "built/local/tslint/rules", "linterOptions": { "exclude": [ - "tests/cases/**/*" + "tests/**/*" ] }, "rules": {