Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TSLint rules and fixes #3642

Closed
wants to merge 10 commits into from
Prev Previous commit
for...in not for...of
  • Loading branch information
danquirk committed Jul 9, 2015
commit c363dec9af72fe8397105e9704052b121e87795c
3 changes: 2 additions & 1 deletion Jakefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,8 @@ task("update-sublime", [serverFile], function() {
// run this task automatically
desc("Runs tslint on the compiler sources");
task("lint", [], function() {
for(var f of compilerSources) {
for(var i in compilerSources) {
var f = compilerSources[i];
var cmd = 'tslint -f ' + f;
exec(cmd,
function() { console.log('SUCCESS: No linter errors'); },
Expand Down