Disallows sticking binary operators to the right.
Types: Array
or Boolean
Values: Array of quoted operators or true
to require space after all possible binary operators
"requireSpaceAfterBinaryOperators": [
"=",
",",
"+",
"-",
"/",
"*",
"==",
"===",
"!=",
"!=="
// etc
]
x + y;
x +y;