style(*): add validateParameterSeparator rule to jscs

Closes #9685
This commit is contained in:
Henry Zhu
2014-10-19 20:24:53 -04:00
committed by Peter Bacon Darwin
parent 8b921617e9
commit 31ec9f14ef
8 changed files with 28 additions and 27 deletions

View File

@@ -17,7 +17,7 @@ describe('$interval', function() {
fn: fn,
id: nextRepeatId
});
repeatFns.sort(function(a,b){ return a.nextTime - b.nextTime;});
repeatFns.sort(function(a, b){ return a.nextTime - b.nextTime;});
return nextRepeatId++;
},
@@ -43,7 +43,7 @@ describe('$interval', function() {
var task = repeatFns[0];
task.fn();
task.nextTime += task.delay;
repeatFns.sort(function(a,b){ return a.nextTime - b.nextTime;});
repeatFns.sort(function(a, b){ return a.nextTime - b.nextTime;});
}
return millis;
}