add empty_line_after_doc_comments and remove option_if_let_else (#8539)

This commit is contained in:
Thomas Coratger
2024-06-01 17:21:50 +02:00
committed by GitHub
parent dfce570ceb
commit da233bf322
5 changed files with 5 additions and 8 deletions

View File

@@ -154,6 +154,7 @@ unused_rounding = "warn"
useless_let_if_seq = "warn"
use_self = "warn"
missing_const_for_fn = "warn"
empty_line_after_doc_comments = "warn"
# These are nursery lints which have findings. Allow them for now. Some are not
# quite mature enough for use in our codebase and some we don't really want.
@@ -162,13 +163,11 @@ as_ptr_cast_mut = "allow"
cognitive_complexity = "allow"
collection_is_never_read = "allow"
debug_assert_with_mut_call = "allow"
empty_line_after_doc_comments = "allow"
fallible_impl_from = "allow"
future_not_send = "allow"
iter_on_single_items = "allow"
needless_collect = "allow"
non_send_fields_in_send_ty = "allow"
option_if_let_else = "allow"
redundant_pub_crate = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"