mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
Move some lints to temporary list
This commit is contained in:
parent
3041164301
commit
1fdf3063d0
1 changed files with 3 additions and 3 deletions
|
@ -165,9 +165,6 @@ question_mark = "allow"
|
||||||
enum_variant_names = "allow"
|
enum_variant_names = "allow"
|
||||||
# Builder pattern disagrees
|
# Builder pattern disagrees
|
||||||
new_ret_no_self = "allow"
|
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
|
## Following lints should be tackled at some point
|
||||||
bind_instead_of_map = "allow"
|
bind_instead_of_map = "allow"
|
||||||
|
@ -177,6 +174,7 @@ collapsible_if = "allow"
|
||||||
collapsible_match = "allow"
|
collapsible_match = "allow"
|
||||||
clone_on_copy = "allow"
|
clone_on_copy = "allow"
|
||||||
derivable_impls = "allow"
|
derivable_impls = "allow"
|
||||||
|
derived_hash_with_manual_eq = "allow"
|
||||||
double_parens = "allow"
|
double_parens = "allow"
|
||||||
explicit_auto_deref = "allow"
|
explicit_auto_deref = "allow"
|
||||||
field_reassign_with_default = "allow"
|
field_reassign_with_default = "allow"
|
||||||
|
@ -201,6 +199,8 @@ needless_pass_by_value = "allow"
|
||||||
needless_return = "allow"
|
needless_return = "allow"
|
||||||
new_without_default = "allow"
|
new_without_default = "allow"
|
||||||
nonminimal_bool = "allow"
|
nonminimal_bool = "allow"
|
||||||
|
non_canonical_clone_impl = "allow"
|
||||||
|
non_canonical_partial_ord_impl = "allow"
|
||||||
non_minimal_cfg = "allow"
|
non_minimal_cfg = "allow"
|
||||||
only_used_in_recursion = "allow"
|
only_used_in_recursion = "allow"
|
||||||
op_ref = "allow"
|
op_ref = "allow"
|
||||||
|
|
Loading…
Reference in a new issue