Skip to content

Commit 27c283a

Browse files
committed
Suppress wildcard import pedantic lints
1 parent 142955b commit 27c283a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Diff for: serde/src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@
106106
type_complexity,
107107
use_self,
108108
zero_prefixed_literal,
109+
// correctly used
110+
enum_glob_use,
111+
wildcard_imports,
109112
// not practical
110113
needless_pass_by_value,
111114
similar_names,

Diff for: serde_derive/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
too_many_lines,
5252
unseparated_literal_suffix,
5353
use_self,
54+
wildcard_imports,
5455
)
5556
)]
5657
// The `quote!` macro requires deep recursion.

0 commit comments

Comments
 (0)