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