I'm having problems with my -rather extense- Uncrustify Configuration. I'm using Xcode to auto-run Uncrustify.
For some reason, Uncrustify seems to add a Space before the closing Brace of a block declaration.
Sample Input
[_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
}];
Sample Output (note the forced
space before the closing Brace)
[_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
}];
Desired Output
[_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
}];
How can I fix this?