File tree Expand file tree Collapse file tree 1 file changed +10
-13
lines changed
Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Original file line number Diff line number Diff line change 11#![ doc( html_root_url = "https://docs.rs/serde_derive_internals/0.25.0" ) ]
22#![ allow( unknown_lints, bare_trait_objects) ]
3- #![ cfg_attr( feature = "cargo-clippy" , allow( renamed_and_removed_lints) ) ]
4- #![ cfg_attr(
5- feature = "cargo-clippy" ,
6- allow(
7- cognitive_complexity,
8- redundant_field_names,
9- result_unit_err,
10- should_implement_trait,
11- trivially_copy_pass_by_ref,
12- wildcard_in_or_patterns,
13- // clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704
14- unnested_or_patterns,
15- )
3+ #![ deny( clippy:: all) ]
4+ #![ allow(
5+ clippy:: cognitive_complexity,
6+ clippy:: redundant_field_names,
7+ clippy:: result_unit_err,
8+ clippy:: should_implement_trait,
9+ clippy:: trivially_copy_pass_by_ref,
10+ clippy:: wildcard_in_or_patterns,
11+ // clippy bug: https://github.com/rust-lang/rust-clippy/issues/5704
12+ clippy:: unnested_or_patterns,
1613) ]
1714
1815#[ macro_use]
You can’t perform that action at this time.
0 commit comments