Skip to content

Commit

Permalink
Allow unknown lints
Browse files Browse the repository at this point in the history
This allows referencing new lints like `clippy::to_string_trait_impl`.
  • Loading branch information
nvzqz committed Feb 11, 2024
1 parent 5f368e9 commit 1c182e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! [bench_attr_threads]: macro@bench#threads
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]
#![allow(unused_unsafe, clippy::needless_doctest_main, clippy::type_complexity)]
#![allow(unknown_lints, unused_unsafe, clippy::needless_doctest_main, clippy::type_complexity)]

// Used by generated code. Not public API and thus not subject to SemVer.
#[doc(hidden)]
Expand Down

0 comments on commit 1c182e9

Please sign in to comment.