From 29c8b001615e579a07248e6f6df9d0e9b02d08a8 Mon Sep 17 00:00:00 2001 From: Alexandru-Dan Pop Date: Tue, 12 Jun 2018 11:55:19 +0300 Subject: [PATCH] exclude coverage from tslint.json --- packages/react-scripts/template/tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/react-scripts/template/tslint.json b/packages/react-scripts/template/tslint.json index 67823d8e1..bfdc862cf 100644 --- a/packages/react-scripts/template/tslint.json +++ b/packages/react-scripts/template/tslint.json @@ -3,7 +3,8 @@ "linterOptions": { "exclude": [ "config/**/*.js", - "node_modules/**/*.ts" + "node_modules/**/*.ts", + "coverage/lcov-report/*.js" ] } }