clang-format's current output:
- (CGFloat)collectionView:(UICollectionView *)collectionView
heightForHeaderWithLayout:(GPNCardCollectionViewLayout *)layout {
}
Output after patch:
- (CGFloat)collectionView:(UICollectionView *)collectionView heightForHeaderWithLayout:(GPNCardCollectionViewLayout *)layout {
}
.clang-format contents
BasedOnStyle: Google
IndentWrappedFunctionNames: true
ColumnLimit: 100
justong?