Maarten Billemont

Results 87 comments of Maarten Billemont

Running with `--verbose`, we see: ``` Unable to resolve inherited type 'AnyObject' for 'UserProject' ```

Work-around, add this to `MockingbirdSupport/Swift/AnyObject.swift`: ``` protocol AnyObject {} ```

I appreciate the pointer, @muhammadqazi, but I am aware of `match` and I deliberately ignore it because I have no interest in storing credentials in a repository or side-stepping Xcode/Apple's...

@anthonycuervo23 For now I am doing this: ``` begin create_keychain() rescue => error UI.error("create_keychain was skipped due to a failure: #{error}") end ```

This continues to be the case in `0.50.3`: ``` hubstaff@Ganymede ios $ cat test.swift func foo() { do { try bar() } catch { print("error: \(error)") } } hubstaff@Ganymede ios...

0.57.0 ``` statement_position: statement_mode: uncuddled_else ``` This is still true. With `uncuddled_else`, the following correctly raises a warning: ``` // cuddled if one { then() } else if two {...

The issue is that the rule requires there to be white-space in front of the `else`/`catch` which is equal to the amount of white-space in front of the `}`, a...