@@ -197,7 +197,6 @@ pub mod else_if_without_else;
197
197
pub mod empty_enum;
198
198
pub mod entry;
199
199
pub mod enum_clike;
200
- pub mod enum_glob_use;
201
200
pub mod enum_variants;
202
201
pub mod eq_op;
203
202
pub mod erasing_op;
@@ -520,7 +519,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
520
519
& empty_enum:: EMPTY_ENUM ,
521
520
& entry:: MAP_ENTRY ,
522
521
& enum_clike:: ENUM_CLIKE_UNPORTABLE_VARIANT ,
523
- & enum_glob_use:: ENUM_GLOB_USE ,
524
522
& enum_variants:: ENUM_VARIANT_NAMES ,
525
523
& enum_variants:: MODULE_INCEPTION ,
526
524
& enum_variants:: MODULE_NAME_REPETITIONS ,
@@ -814,6 +812,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
814
812
& use_self:: USE_SELF ,
815
813
& vec:: USELESS_VEC ,
816
814
& wildcard_dependencies:: WILDCARD_DEPENDENCIES ,
815
+ & wildcard_imports:: ENUM_GLOB_USE ,
817
816
& wildcard_imports:: WILDCARD_IMPORTS ,
818
817
& write:: PRINTLN_EMPTY_STRING ,
819
818
& write:: PRINT_LITERAL ,
@@ -837,7 +836,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
837
836
store. register_late_pass ( move || box types:: Types :: new ( vec_box_size_threshold) ) ;
838
837
store. register_late_pass ( || box booleans:: NonminimalBool ) ;
839
838
store. register_late_pass ( || box eq_op:: EqOp ) ;
840
- store. register_late_pass ( || box enum_glob_use:: EnumGlobUse ) ;
841
839
store. register_late_pass ( || box enum_clike:: UnportableVariant ) ;
842
840
store. register_late_pass ( || box float_literal:: FloatLiteral ) ;
843
841
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:
1064
1062
LintId :: of( & doc:: DOC_MARKDOWN ) ,
1065
1063
LintId :: of( & doc:: MISSING_ERRORS_DOC ) ,
1066
1064
LintId :: of( & empty_enum:: EMPTY_ENUM ) ,
1067
- LintId :: of( & enum_glob_use:: ENUM_GLOB_USE ) ,
1068
1065
LintId :: of( & enum_variants:: MODULE_NAME_REPETITIONS ) ,
1069
1066
LintId :: of( & enum_variants:: PUB_ENUM_VARIANT_NAMES ) ,
1070
1067
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:
1108
1105
LintId :: of( & unicode:: NON_ASCII_LITERAL ) ,
1109
1106
LintId :: of( & unicode:: UNICODE_NOT_NFC ) ,
1110
1107
LintId :: of( & unused_self:: UNUSED_SELF ) ,
1108
+ LintId :: of( & wildcard_imports:: ENUM_GLOB_USE ) ,
1111
1109
LintId :: of( & wildcard_imports:: WILDCARD_IMPORTS ) ,
1112
1110
] ) ;
1113
1111
0 commit comments