sp_not
Add or remove space after the '!' (not) unary operator.
Possible values are ignore, add, remove and force, default is remove.
Examples
Both add and force
Before:
int x = 10;
if (!x) {
std::cout << "As true\n";
}
After
if (! x) {
std::cout << "As true\n";
}