Instead of something like:
if let aVariable = something,
anotherVariable = somethingElse {
// A
// huge
// indented
// body
// of
// code
}
I think it's generally better to do something like:
guard let aVariable = something,
anotherVariable = somethingElse else { return }
// A
// huge
// unindented
// body
// of
// code
There could be a limit to the number of lines inside the if let to trigger the rule.
Instead of something like:
I think it's generally better to do something like:
There could be a limit to the number of lines inside the
if letto trigger the rule.