How can I add newline after call to super with uncrustify
Current:
- (void)someFunction
{
[super someFunction];
more stuff;
and more stuff;
}
Desired:
- (void)someFunction
{
[super someFunction];
more stuff;
and more stuff;
}
And how can I add newline before and after interface declaration and implementation declaration
Current:
@interface SCLoginScreenViewController ()
@property (weak, nonatomic) IBOutlet UIView *someView;
@property (weak, nonatomic) IBOutlet UIView *anotherView;
@end
@implementation SCLoginScreenViewController
- (void)someFunction
{
}
Desired:
@interface SCLoginScreenViewController ()
@property (weak, nonatomic) IBOutlet UIView *someView;
@property (weak, nonatomic) IBOutlet UIView *anotherView;
@end
@implementation SCLoginScreenViewController
- (void)someFunction
{
}
- I am using BBUncrustifyPlugin and UncrustifyX