Skip to content

Commit ab4666e

Browse files
committed
Ignore buggy collapsible_match clippy lint
1 parent e2f8568 commit ab4666e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

serde_derive/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
// clippy false positive: https://github.com/rust-lang/rust-clippy/issues/7054
2222
clippy::branches_sharing_code,
2323
clippy::cognitive_complexity,
24+
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/7575
25+
clippy::collapsible_match,
2426
clippy::enum_variant_names,
2527
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/6797
2628
clippy::manual_map,

serde_derive_internals/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
// Ignored clippy lints
55
#![allow(
66
clippy::cognitive_complexity,
7+
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/7575
8+
clippy::collapsible_match,
79
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/6797
810
clippy::manual_map,
911
clippy::missing_panics_doc,

0 commit comments

Comments
 (0)