rustfmt-nightly 1.1.1

Tool to find and fix Rust formatting issues
Documentation
fn main() {
    match option {
        None => if condition {
            true
        } else {
            false
        },
    }
}

fn main() {
    match option {
        None => {
            if condition {
                true
            } else {
                false
            }
        }
    }
}