Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Remove newline char for consistancy
Browse files Browse the repository at this point in the history
  • Loading branch information
markelog committed May 14, 2014
1 parent c510e1a commit c726557
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/rules/disallow-space-before-binary-operators.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c726557

Please sign in to comment.