mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-12 11:50:54 -06:00
for...in not for...of
This commit is contained in:
parent
a80a4ba0a4
commit
c363dec9af
@ -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'); },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user