eslint: change no-plusplus from warning to 2 and fix violations.

This commit is contained in:
kevv87
2016-11-30 18:05:04 +00:00
committed by Tim Abbott
parent c90da24541
commit e6369fc29b
23 changed files with 41 additions and 41 deletions

View File

@@ -39,7 +39,7 @@
}, function () {
var i;
initialized = true;
for (i=0; i<callbacks.length; i++) {
for (i=0; i<callbacks.length; i += 1) {
callbacks[i]();
}
});