@@ -186,6 +186,7 @@ checked_conversions = "warn"
186186clear_with_drain = " warn"
187187clone_on_ref_ptr = " warn"
188188cloned_instead_of_copied = " warn"
189+ coerce_container_to_any = " warn"
189190dbg_macro = " warn"
190191debug_assert_with_mut_call = " warn"
191192default_union_representation = " warn"
@@ -195,7 +196,9 @@ disallowed_methods = "warn" # See clippy.toml
195196disallowed_names = " warn" # See clippy.toml
196197disallowed_script_idents = " warn" # See clippy.toml
197198disallowed_types = " warn" # See clippy.toml
199+ doc_broken_link = " warn"
198200doc_comment_double_space_linebreaks = " warn"
201+ doc_include_without_cfg = " warn"
199202doc_link_with_quotes = " warn"
200203doc_markdown = " warn"
201204elidable_lifetime_names = " warn"
@@ -228,6 +231,7 @@ inefficient_to_string = "warn"
228231infinite_loop = " warn"
229232into_iter_without_iter = " warn"
230233invalid_upcast_comparisons = " warn"
234+ ip_constant = " warn"
231235iter_filter_is_ok = " warn"
232236iter_filter_is_some = " warn"
233237iter_not_returning_iterator = " warn"
@@ -300,6 +304,7 @@ ref_patterns = "warn"
300304rest_pat_in_fully_bound_structs = " warn"
301305return_and_then = " warn"
302306same_functions_in_if_condition = " warn"
307+ self_only_used_in_recursion = " warn"
303308semicolon_if_nothing_returned = " warn"
304309set_contains_or_insert = " warn"
305310single_char_pattern = " warn"
@@ -349,6 +354,7 @@ zero_sized_map_values = "warn"
349354
350355
351356# TODO(emilk): maybe enable more of these lints?
357+ cast_possible_wrap = " allow"
352358comparison_chain = " allow"
353359should_panic_without_expect = " allow"
354360too_many_lines = " allow"
0 commit comments