Move some lints to temporary list

This commit is contained in:
Johann Hemmann 2024-01-19 13:06:08 +01:00
parent 3041164301
commit 1fdf3063d0

View file

@ -165,9 +165,6 @@ question_mark = "allow"
enum_variant_names = "allow"
# Builder pattern disagrees
new_ret_no_self = "allow"
non_canonical_clone_impl = "allow"
non_canonical_partial_ord_impl = "allow"
derived_hash_with_manual_eq = "allow"
## Following lints should be tackled at some point
bind_instead_of_map = "allow"
@ -177,6 +174,7 @@ collapsible_if = "allow"
collapsible_match = "allow"
clone_on_copy = "allow"
derivable_impls = "allow"
derived_hash_with_manual_eq = "allow"
double_parens = "allow"
explicit_auto_deref = "allow"
field_reassign_with_default = "allow"
@ -201,6 +199,8 @@ needless_pass_by_value = "allow"
needless_return = "allow"
new_without_default = "allow"
nonminimal_bool = "allow"
non_canonical_clone_impl = "allow"
non_canonical_partial_ord_impl = "allow"
non_minimal_cfg = "allow"
only_used_in_recursion = "allow"
op_ref = "allow"