From 2077acbf5769255c7ad5b42ab34d7eac9a4205b3 Mon Sep 17 00:00:00 2001 From: Cyrille Tuzi Date: Sat, 3 Jun 2017 15:13:18 +0200 Subject: [PATCH] fix(@angular/cli): set tslint 5 to emit warnings fix(@angular/cli): set tslint 5 to emit warnings cli 1.1.0 upgraded to tslint 5, but tslint 5 is now raising errors by default, instead of warnings previously, and it's very confusing (lint errors can't be on the same level as syntax errors). --- tests/e2e/assets/1.0.0-proj/tslint.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/assets/1.0.0-proj/tslint.json b/tests/e2e/assets/1.0.0-proj/tslint.json index 916969296bd0..3e435aecce9d 100644 --- a/tests/e2e/assets/1.0.0-proj/tslint.json +++ b/tests/e2e/assets/1.0.0-proj/tslint.json @@ -2,6 +2,7 @@ "rulesDirectory": [ "node_modules/codelyzer" ], + "defaultSeverity": "warn", "rules": { "callable-types": true, "class-name": true,