diff --git a/lib/rules/disallow-space-before-binary-operators.js b/lib/rules/disallow-space-before-binary-operators.js index 5568a578c..ceb556ee9 100644 --- a/lib/rules/disallow-space-before-binary-operators.js +++ b/lib/rules/disallow-space-before-binary-operators.js @@ -42,7 +42,6 @@ module.exports.prototype = { if (operators[','] || operators['=']) { file.iterateTokensByType('Punctuator', function(token, i, tokens) { var operator = token.value; - if (operator !== ',' && operator !== '=') { return; }