Two related questions here.
1) What setting do I need to use to make multiline method name a single line? For example, I have this:
- (NSArray *)nodesForXPath:(NSString *)xpath
namespaces:(NSDictionary *)namespaces
error:(NSError **)error {
Which my current config turns into this:
- (NSArray*)nodesForXPath:(NSString*)xpath
namespaces:(NSDictionary*)namespaces
error:(NSError * *)error {
But I want it to look like this:
- (NSArray*)nodesForXPath:(NSString*)xpath namespaces:(NSDictionary*)namespaces error:(NSError * *)error {
2) How can I remove spaces between double asterisks in method declarations?
I can post my current config if that would be helpful.