@@ -197,7 +197,6 @@ pub mod else_if_without_else;
197197pub mod empty_enum;
198198pub mod entry;
199199pub mod enum_clike;
200- pub mod enum_glob_use;
201200pub mod enum_variants;
202201pub mod eq_op;
203202pub mod erasing_op;
@@ -520,7 +519,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
520519 & empty_enum:: EMPTY_ENUM ,
521520 & entry:: MAP_ENTRY ,
522521 & enum_clike:: ENUM_CLIKE_UNPORTABLE_VARIANT ,
523- & enum_glob_use:: ENUM_GLOB_USE ,
524522 & enum_variants:: ENUM_VARIANT_NAMES ,
525523 & enum_variants:: MODULE_INCEPTION ,
526524 & enum_variants:: MODULE_NAME_REPETITIONS ,
@@ -814,6 +812,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
814812 & use_self:: USE_SELF ,
815813 & vec:: USELESS_VEC ,
816814 & wildcard_dependencies:: WILDCARD_DEPENDENCIES ,
815+ & wildcard_imports:: ENUM_GLOB_USE ,
817816 & wildcard_imports:: WILDCARD_IMPORTS ,
818817 & write:: PRINTLN_EMPTY_STRING ,
819818 & write:: PRINT_LITERAL ,
@@ -837,7 +836,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
837836 store. register_late_pass ( move || box types:: Types :: new ( vec_box_size_threshold) ) ;
838837 store. register_late_pass ( || box booleans:: NonminimalBool ) ;
839838 store. register_late_pass ( || box eq_op:: EqOp ) ;
840- store. register_late_pass ( || box enum_glob_use:: EnumGlobUse ) ;
841839 store. register_late_pass ( || box enum_clike:: UnportableVariant ) ;
842840 store. register_late_pass ( || box float_literal:: FloatLiteral ) ;
843841 let verbose_bit_mask_threshold = conf. verbose_bit_mask_threshold ;
@@ -1064,7 +1062,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
10641062 LintId :: of( & doc:: DOC_MARKDOWN ) ,
10651063 LintId :: of( & doc:: MISSING_ERRORS_DOC ) ,
10661064 LintId :: of( & empty_enum:: EMPTY_ENUM ) ,
1067- LintId :: of( & enum_glob_use:: ENUM_GLOB_USE ) ,
10681065 LintId :: of( & enum_variants:: MODULE_NAME_REPETITIONS ) ,
10691066 LintId :: of( & enum_variants:: PUB_ENUM_VARIANT_NAMES ) ,
10701067 LintId :: of( & eta_reduction:: REDUNDANT_CLOSURE_FOR_METHOD_CALLS ) ,
@@ -1108,6 +1105,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11081105 LintId :: of( & unicode:: NON_ASCII_LITERAL ) ,
11091106 LintId :: of( & unicode:: UNICODE_NOT_NFC ) ,
11101107 LintId :: of( & unused_self:: UNUSED_SELF ) ,
1108+ LintId :: of( & wildcard_imports:: ENUM_GLOB_USE ) ,
11111109 LintId :: of( & wildcard_imports:: WILDCARD_IMPORTS ) ,
11121110 ] ) ;
11131111
0 commit comments