Sort the ignored lints in serde_derive

This commit is contained in:
David Tolnay 2018-09-11 23:07:01 -07:00
parent 66a9ccb10e
commit a8247bc619
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -29,29 +29,29 @@
#![cfg_attr(
feature = "cargo-clippy",
allow(
cyclomatic_complexity,
enum_variant_names,
needless_pass_by_value,
redundant_field_names,
too_many_arguments,
used_underscore_binding,
cyclomatic_complexity,
needless_pass_by_value
)
)]
// Whitelisted clippy_pedantic lints
#![cfg_attr(
feature = "cargo-clippy",
allow(
items_after_statements,
doc_markdown,
stutter,
similar_names,
use_self,
single_match_else,
enum_glob_use,
match_same_arms,
filter_map,
cast_possible_truncation,
doc_markdown,
enum_glob_use,
filter_map,
indexing_slicing,
items_after_statements,
match_same_arms,
similar_names,
single_match_else,
stutter,
use_self,
)
)]
// The `quote!` macro requires deep recursion.