@@ -600,7 +600,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
600
600
& loops:: WHILE_IMMUTABLE_CONDITION ,
601
601
& loops:: WHILE_LET_LOOP ,
602
602
& loops:: WHILE_LET_ON_ITERATOR ,
603
- & macro_use:: MACRO_USE_IMPORT ,
603
+ & macro_use:: MACRO_USE_IMPORTS ,
604
604
& main_recursion:: MAIN_RECURSION ,
605
605
& map_clone:: MAP_CLONE ,
606
606
& map_unit_fn:: OPTION_MAP_UNIT_FN ,
@@ -1014,7 +1014,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1014
1014
store. register_early_pass ( move || box excessive_bools:: ExcessiveBools :: new ( max_struct_bools, max_fn_params_bools) ) ;
1015
1015
store. register_early_pass ( || box option_env_unwrap:: OptionEnvUnwrap ) ;
1016
1016
store. register_late_pass ( || box wildcard_imports:: WildcardImports ) ;
1017
- store. register_early_pass ( || box macro_use:: MacroUseImport ) ;
1017
+ store. register_early_pass ( || box macro_use:: MacroUseImports ) ;
1018
1018
1019
1019
store. register_group ( true , "clippy::restriction" , Some ( "clippy_restriction" ) , vec ! [
1020
1020
LintId :: of( & arithmetic:: FLOAT_ARITHMETIC ) ,
@@ -1082,7 +1082,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1082
1082
LintId :: of( & literal_representation:: LARGE_DIGIT_GROUPS ) ,
1083
1083
LintId :: of( & loops:: EXPLICIT_INTO_ITER_LOOP ) ,
1084
1084
LintId :: of( & loops:: EXPLICIT_ITER_LOOP ) ,
1085
- LintId :: of( & macro_use:: MACRO_USE_IMPORT ) ,
1085
+ LintId :: of( & macro_use:: MACRO_USE_IMPORTS ) ,
1086
1086
LintId :: of( & matches:: SINGLE_MATCH_ELSE ) ,
1087
1087
LintId :: of( & methods:: FILTER_MAP ) ,
1088
1088
LintId :: of( & methods:: FILTER_MAP_NEXT ) ,
0 commit comments