Disallows sticking unary operators to the right.
Types: Array
or Boolean
Values: Array of quoted operators or true
to require space after prefix for all unary operators
"requireSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"]
x = ! y; y = ++ z;
x = !y; y = ++z;