Skip to content

Commit

Permalink
style: allow clippy::too_long_first_doc_paragraph (#2488)
Browse files Browse the repository at this point in the history
* style: allow clippy::too_long_first_doc_paragraph

* style: fmt
  • Loading branch information
SteveLauC committed Sep 8, 2024
1 parent 66be012 commit d216c82
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
#![crate_name = "nix"]
#![cfg(unix)]
#![allow(non_camel_case_types)]
// A clear document is a good document no matter if it has a summary in its
// first paragraph or not.
#![allow(clippy::too_long_first_doc_paragraph)]
#![recursion_limit = "500"]
#![deny(unused)]
#![allow(unused_macros)]
Expand Down

0 comments on commit d216c82

Please sign in to comment.