Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Ignore too_many_lines pedantic clippy lint
Browse files Browse the repository at this point in the history
    error: this function has too many lines (323/100)
       --> src/value/ser.rs:391:5
        |
    391 | /     fn serialize_entry<K, V>(&mut self, key: &K, value: &V) -> Result<()>
    392 | |     where
    393 | |         K: ?Sized + ser::Serialize,
    394 | |         V: ?Sized + ser::Serialize,
    ...   |
    775 | |         Ok(())
    776 | |     }
        | |_____^
        |
        = note: `-D clippy::too-many-lines` implied by `-D clippy::pedantic`
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines
  • Loading branch information
dtolnay committed Aug 13, 2022
1 parent a16e1ad commit 144eb66
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
clippy::missing_panics_doc,
clippy::never_loop,
clippy::return_self_not_must_use,
clippy::too_many_lines,
clippy::unsafe_removed_from_name,
clippy::wildcard_in_or_patterns,
// noisy
Expand Down

0 comments on commit 144eb66

Please sign in to comment.