From 8711493d9958f107ddce661aad53938627d59ff0 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Wed, 30 Sep 2015 18:03:52 -0700 Subject: [PATCH] Make test actually fail on lint fail --- Jakefile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Jakefile.js b/Jakefile.js index f5ed4902fe7..943f2eff5ec 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -869,6 +869,7 @@ task("lint", ["build-rules"], function() { var result = lintFile(lintOptions, lintTargets[i]); if (result.failureCount > 0) { console.log(result.output); + fail('Linter errors.', result.failureCount); } } });