Skip to content

Commit 68f84af

Browse files
Merge pull request microsoft#4005 from weswigham/fix-jake-lint
Fix jake lint with newest tslint
2 parents 3805500 + a759687 commit 68f84af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jakefile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -775,9 +775,9 @@ task("lint", [], function() {
775775
function failure(f) { return function() { console.log('FAILURE: Please fix linting errors in ' + f + '\n') }};
776776

777777
var lintTargets = compilerSources.concat(harnessCoreSources);
778-
for(var i in lintTargets) {
778+
for (var i in lintTargets) {
779779
var f = lintTargets[i];
780-
var cmd = 'tslint -f ' + f;
780+
var cmd = 'tslint -c tslint.json ' + f;
781781
exec(cmd, success(f), failure(f));
782782
}
783783
}, { async: true });

0 commit comments

Comments
 (0)