diff --git a/Jakefile.js b/Jakefile.js index bd5074b43d6..4e400a0b6a8 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -738,7 +738,7 @@ task("lint", [], function() { var lintTargets = compilerSources.concat(harnessCoreSources); for(var i in lintTargets) { var f = lintTargets[i]; - var cmd = 'tslint -f ' + f; + var cmd = 'tslint -c tslint.json ' + f; exec(cmd, success(f), failure(f)); } }, { async: true });