Update to latest eslint

This commit is contained in:
kpdecker
2015-09-01 17:56:32 -05:00
parent bff5fab8f9
commit 0aef72cb8e
20 changed files with 36 additions and 38 deletions
@@ -471,7 +471,7 @@ JavaScriptCompiler.prototype = {
let len = parts.length;
for (; i < len; i++) {
/*eslint-disable no-loop-func */
/* eslint-disable no-loop-func */
this.replaceStack((current) => {
let lookup = this.nameLookup(current, parts[i], type);
// We want to ensure that zero and false are handled properly if the context (falsy flag)
@@ -483,7 +483,7 @@ JavaScriptCompiler.prototype = {
return [' && ', lookup];
}
});
/*eslint-enable no-loop-func */
/* eslint-enable no-loop-func */
}
},