Disallows sticking unary operators to the left.
Types: Array
or Boolean
Values: Array of quoted operators or true
to require space before postfix for all unary operators
(i.e. increment/decrement operators).
"requireSpaceBeforePostfixUnaryOperators": ["++", "--"]
x = y ++; y = z --;
x = y++; y = z--;