Disallows sticking binary operators to the left.
Types: Array
or Boolean
Values: Array of quoted operators or true
to require space before all possible binary operators
without comma operator, since it's rarely used with this rule
"requireSpaceBeforeBinaryOperators": [
"=",
",",
"+",
"-",
"/",
"*",
"==",
"===",
"!=",
"!=="
// etc
]
x !== y;
x!== y;