dblock / obcd

Deal with obsessive compulsive issues of programmers in Objective-C.
MIT License
42 stars 8 forks source link

Check method style #19

Open netbe opened 10 years ago

netbe commented 10 years ago

Checks for spaces and braces to newline like:

- (void)myMethod;

vs

-(void)myMethod;

and

- (void)myMethod
{

}
- (void)myMethod{

}

or

- (void)myMethod {

}