Sort the ignored lints in serde_derive
This commit is contained in:
parent
66a9ccb10e
commit
a8247bc619
@ -29,29 +29,29 @@
|
|||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
feature = "cargo-clippy",
|
feature = "cargo-clippy",
|
||||||
allow(
|
allow(
|
||||||
|
cyclomatic_complexity,
|
||||||
enum_variant_names,
|
enum_variant_names,
|
||||||
|
needless_pass_by_value,
|
||||||
redundant_field_names,
|
redundant_field_names,
|
||||||
too_many_arguments,
|
too_many_arguments,
|
||||||
used_underscore_binding,
|
used_underscore_binding,
|
||||||
cyclomatic_complexity,
|
|
||||||
needless_pass_by_value
|
|
||||||
)
|
)
|
||||||
)]
|
)]
|
||||||
// Whitelisted clippy_pedantic lints
|
// Whitelisted clippy_pedantic lints
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
feature = "cargo-clippy",
|
feature = "cargo-clippy",
|
||||||
allow(
|
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,
|
cast_possible_truncation,
|
||||||
|
doc_markdown,
|
||||||
|
enum_glob_use,
|
||||||
|
filter_map,
|
||||||
indexing_slicing,
|
indexing_slicing,
|
||||||
|
items_after_statements,
|
||||||
|
match_same_arms,
|
||||||
|
similar_names,
|
||||||
|
single_match_else,
|
||||||
|
stutter,
|
||||||
|
use_self,
|
||||||
)
|
)
|
||||||
)]
|
)]
|
||||||
// The `quote!` macro requires deep recursion.
|
// The `quote!` macro requires deep recursion.
|
||||||
|
Loading…
Reference in New Issue
Block a user