Suppress wildcard import pedantic lints

This commit is contained in:
David Tolnay 2020-02-26 21:00:12 -08:00
parent 142955b109
commit 27c283ab53
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 4 additions and 0 deletions

View File

@ -106,6 +106,9 @@
type_complexity,
use_self,
zero_prefixed_literal,
// correctly used
enum_glob_use,
wildcard_imports,
// not practical
needless_pass_by_value,
similar_names,

View File

@ -51,6 +51,7 @@
too_many_lines,
unseparated_literal_suffix,
use_self,
wildcard_imports,
)
)]
// The `quote!` macro requires deep recursion.