Skip to content

Commit

Permalink
ci: Silence clippy::extra_unused_type_parameters in affected crates
Browse files Browse the repository at this point in the history
Triggers false positives.
See discussion in rust-lang/rust-clippy#10319.
Possibly fixed in rust-lang/rust-clippy#10321.

Signed-off-by: Kévin Commaille <[email protected]>
  • Loading branch information
zecakeh authored and jplatte committed Feb 13, 2023
1 parent f0bdc05 commit 8723486
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(missing_docs, missing_debug_implementations)]
#![allow(clippy::drop_non_drop)] // triggered by wasm_bindgen code
// triggered by wasm_bindgen code
#![allow(clippy::drop_non_drop)]
// Triggers false positives.
// See <https://github.com/rust-lang/rust-clippy/issues/10319>.
#![allow(clippy::extra_unused_type_parameters)]

pub mod attachment;
pub mod device;
Expand Down

0 comments on commit 8723486

Please sign in to comment.