Skip to content

Commit 43911e5

Browse files
committed
Allow clippy::must_use_candidate.
1 parent 2bed868 commit 43911e5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@
2222
cfg_doctest,
2323
)
2424
)]
25+
#![allow(
26+
clippy::doc_markdown
27+
clippy::module_name_repetitions,
28+
clippy::must_use_candidate,
29+
)]
2530
#![warn(missing_docs)]
26-
#![allow(clippy::module_name_repetitions, clippy::doc_markdown)]
2731
#![warn(rust_2018_idioms)]
2832

2933
#[cfg(test)]

0 commit comments

Comments
 (0)