Skip to content

Commit 8723486

Browse files
zecakehjplatte
authored andcommitted
ci: Silence clippy::extra_unused_type_parameters in affected crates
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 <zecakeh@tedomum.fr>
1 parent f0bdc05 commit 8723486

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
#![doc = include_str!("../README.md")]
1616
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1717
#![warn(missing_docs, missing_debug_implementations)]
18-
#![allow(clippy::drop_non_drop)] // triggered by wasm_bindgen code
18+
// triggered by wasm_bindgen code
19+
#![allow(clippy::drop_non_drop)]
20+
// Triggers false positives.
21+
// See <https://github.com/rust-lang/rust-clippy/issues/10319>.
22+
#![allow(clippy::extra_unused_type_parameters)]
1923

2024
pub mod attachment;
2125
pub mod device;

0 commit comments

Comments
 (0)