@@ -193,7 +193,6 @@ mod casts;
193
193
mod checked_conversions;
194
194
mod cognitive_complexity;
195
195
mod collapsible_if;
196
- mod collapsible_match;
197
196
mod comparison_chain;
198
197
mod copies;
199
198
mod copy_iterator;
@@ -281,17 +280,13 @@ mod main_recursion;
281
280
mod manual_assert;
282
281
mod manual_async_fn;
283
282
mod manual_bits;
284
- mod manual_map;
285
283
mod manual_non_exhaustive;
286
284
mod manual_ok_or;
287
285
mod manual_strip;
288
- mod manual_unwrap_or;
289
286
mod map_clone;
290
287
mod map_err_ignore;
291
288
mod map_unit_fn;
292
- mod match_on_vec_items;
293
289
mod match_result_ok;
294
- mod match_str_case_mismatch;
295
290
mod matches;
296
291
mod mem_forget;
297
292
mod mem_replace;
@@ -372,7 +367,6 @@ mod self_named_constructors;
372
367
mod semicolon_if_nothing_returned;
373
368
mod serde_api;
374
369
mod shadow;
375
- mod significant_drop_in_scrutinee;
376
370
mod single_char_lifetime_names;
377
371
mod single_component_path_imports;
378
372
mod size_of_in_element_count;
@@ -391,7 +385,6 @@ mod trailing_empty_array;
391
385
mod trait_bounds;
392
386
mod transmute;
393
387
mod transmuting_null;
394
- mod try_err;
395
388
mod types;
396
389
mod undocumented_unsafe_blocks;
397
390
mod unicode;
@@ -569,7 +562,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
569
562
store. register_late_pass ( || Box :: new ( len_zero:: LenZero ) ) ;
570
563
store. register_late_pass ( || Box :: new ( attrs:: Attributes ) ) ;
571
564
store. register_late_pass ( || Box :: new ( blocks_in_if_conditions:: BlocksInIfConditions ) ) ;
572
- store. register_late_pass ( || Box :: new ( collapsible_match:: CollapsibleMatch ) ) ;
573
565
store. register_late_pass ( || Box :: new ( unicode:: Unicode ) ) ;
574
566
store. register_late_pass ( || Box :: new ( uninit_vec:: UninitVec ) ) ;
575
567
store. register_late_pass ( || Box :: new ( unit_hash:: UnitHash ) ) ;
@@ -707,7 +699,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
707
699
) ;
708
700
store. register_late_pass ( move || Box :: new ( pass_by_ref_or_value) ) ;
709
701
store. register_late_pass ( || Box :: new ( ref_option_ref:: RefOptionRef ) ) ;
710
- store. register_late_pass ( || Box :: new ( try_err:: TryErr ) ) ;
711
702
store. register_late_pass ( || Box :: new ( bytecount:: ByteCount ) ) ;
712
703
store. register_late_pass ( || Box :: new ( infinite_iter:: InfiniteIter ) ) ;
713
704
store. register_late_pass ( || Box :: new ( inline_fn_without_body:: InlineFnWithoutBody ) ) ;
@@ -819,7 +810,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
819
810
store. register_late_pass ( || Box :: new ( if_not_else:: IfNotElse ) ) ;
820
811
store. register_late_pass ( || Box :: new ( equatable_if_let:: PatternEquality ) ) ;
821
812
store. register_late_pass ( || Box :: new ( mut_mutex_lock:: MutMutexLock ) ) ;
822
- store. register_late_pass ( || Box :: new ( match_on_vec_items:: MatchOnVecItems ) ) ;
823
813
store. register_late_pass ( || Box :: new ( manual_async_fn:: ManualAsyncFn ) ) ;
824
814
store. register_late_pass ( || Box :: new ( vec_resize_to_zero:: VecResizeToZero ) ) ;
825
815
store. register_late_pass ( || Box :: new ( panic_in_result_fn:: PanicInResultFn ) ) ;
@@ -837,7 +827,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
837
827
store. register_late_pass ( || Box :: new ( repeat_once:: RepeatOnce ) ) ;
838
828
store. register_late_pass ( || Box :: new ( unwrap_in_result:: UnwrapInResult ) ) ;
839
829
store. register_late_pass ( || Box :: new ( self_assignment:: SelfAssignment ) ) ;
840
- store. register_late_pass ( || Box :: new ( manual_unwrap_or:: ManualUnwrapOr ) ) ;
841
830
store. register_late_pass ( || Box :: new ( manual_ok_or:: ManualOkOr ) ) ;
842
831
store. register_late_pass ( || Box :: new ( float_equality_without_abs:: FloatEqualityWithoutAbs ) ) ;
843
832
store. register_late_pass ( || Box :: new ( semicolon_if_nothing_returned:: SemicolonIfNothingReturned ) ) ;
@@ -856,7 +845,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
856
845
} ) ;
857
846
store. register_late_pass ( || Box :: new ( redundant_slicing:: RedundantSlicing ) ) ;
858
847
store. register_late_pass ( || Box :: new ( from_str_radix_10:: FromStrRadix10 ) ) ;
859
- store. register_late_pass ( || Box :: new ( manual_map:: ManualMap ) ) ;
860
848
store. register_late_pass ( move || Box :: new ( if_then_some_else_none:: IfThenSomeElseNone :: new ( msrv) ) ) ;
861
849
store. register_late_pass ( || Box :: new ( bool_assert_comparison:: BoolAssertComparison ) ) ;
862
850
store. register_early_pass ( move || Box :: new ( module_style:: ModStyle ) ) ;
@@ -882,7 +870,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
882
870
) )
883
871
} ) ;
884
872
store. register_late_pass ( move || Box :: new ( undocumented_unsafe_blocks:: UndocumentedUnsafeBlocks ) ) ;
885
- store. register_late_pass ( || Box :: new ( match_str_case_mismatch:: MatchStrCaseMismatch ) ) ;
886
873
store. register_late_pass ( move || Box :: new ( format_args:: FormatArgs ) ) ;
887
874
store. register_late_pass ( || Box :: new ( trailing_empty_array:: TrailingEmptyArray ) ) ;
888
875
store. register_early_pass ( || Box :: new ( octal_escapes:: OctalEscapes ) ) ;
@@ -895,7 +882,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
895
882
store. register_late_pass ( || Box :: new ( default_union_representation:: DefaultUnionRepresentation ) ) ;
896
883
store. register_early_pass ( || Box :: new ( doc_link_with_quotes:: DocLinkWithQuotes ) ) ;
897
884
store. register_late_pass ( || Box :: new ( only_used_in_recursion:: OnlyUsedInRecursion ) ) ;
898
- store. register_late_pass ( || Box :: new ( significant_drop_in_scrutinee:: SignificantDropInScrutinee ) ) ;
899
885
let allow_dbg_in_tests = conf. allow_dbg_in_tests ;
900
886
store. register_late_pass ( move || Box :: new ( dbg_macro:: DbgMacro :: new ( allow_dbg_in_tests) ) ) ;
901
887
let cargo_ignore_publish = conf. cargo_ignore_publish ;
0 commit comments