Proper line breaking makes a difference. Don’t put everything in one line. The usual character limit is 120 symbols per line. Put each statement in new line. else
could be on a separate line.
Pro tip:
I prefer to put in on a new line for better readability. In my experience I have noticed, that putting else
on a new line, helps spoting start and end of guard
without reading the context inside the guard
.
// Don't
guard
let clientID = Bundle.main.object(forInfoDictionaryKey: "ApiClientID") as? String,
let serverClientID = Bundle.main.object(forInfoDictionaryKey: "ApiServerClientID") as? String
else {
return
}
// Don't
guard let clientID = Bundle.main.object(forInfoDictionaryKey: "ApiClientID") as? String, let serverClientID = Bundle.main.object(forInfoDictionaryKey: "GoogleServerClientID") as? String else { return }
// Do
guard let clientId = Bundle.main.object(forInfoDictionaryKey: "ApiClientID") as? String,
let serverClientId = Bundle.main.object(forInfoDictionaryKey: "ApiServerClientID") as? String
else {
return
}
How do you line break guard
with multiple statements? Share in the comments below.