Skip to content

Commit f040386

Browse files
committed
Fix jake lint with newest tslint
1 parent d3d3333 commit f040386

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Jakefile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ task("lint", [], function() {
738738
var lintTargets = compilerSources.concat(harnessCoreSources);
739739
for(var i in lintTargets) {
740740
var f = lintTargets[i];
741-
var cmd = 'tslint -f ' + f;
741+
var cmd = 'tslint -c tslint.json ' + f;
742742
exec(cmd, success(f), failure(f));
743743
}
744744
}, { async: true });

0 commit comments

Comments
 (0)