我的 -rather extense- Uncrustify Configuration有问题。我正在使用 Xcode 自动运行 Uncrustify。
出于某种原因,Uncrustify 似乎在块声明的结束大括号之前添加了一个空格。
样本输入
[_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
}];
示例输出(注意forced
右大括号前的空格)
[_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
}];
期望的输出
[_collectionView performBatchUpdates:nil completion:^(BOOL finished) {
}];
我怎样才能解决这个问题?