In the codebase we're using two different styles of early returns: ```swift guard condition else { return } ``` and ```swift guard condition else { return } ``` We should pick one and stick to it.
In the codebase we're using two different styles of early returns:
and
We should pick one and stick to it.