Ignore needless_return clippy lint

warning: unneeded `return` statement
       --> src/main.rs:106:9
        |
    106 |         return Err(Error::Io(err));
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
        = note: `#[warn(clippy::needless_return)]` on by default
    help: remove `return`
        |
    106 -         return Err(Error::Io(err));
    106 +         Err(Error::Io(err))
        |
This commit is contained in:
David Tolnay 2024-03-29 14:08:37 -07:00
parent 4bf1ebdbea
commit fb2b123239
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -7,6 +7,7 @@
clippy::match_same_arms, // https://github.com/rust-lang/rust-clippy/issues/10327
clippy::module_name_repetitions,
clippy::needless_pass_by_value,
clippy::needless_return,
clippy::option_option,
clippy::struct_excessive_bools,
clippy::too_many_lines,