Suppose the following case: ``` if some_error_condition { Err(some_error) } else if some_other_error_condition { Err(some_other_error) } else { Ok(result) } ``` If `some_other_error_condition` happens to be `a != b`, the lint will trigger. However, I don't want to move the Ok case inbetween the Err cases.