@@ -1157,6 +1157,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11571157 store. register_group ( true , "clippy::pedantic" , Some ( "clippy_pedantic" ) , vec ! [
11581158 LintId :: of( & attrs:: INLINE_ALWAYS ) ,
11591159 LintId :: of( & await_holding_lock:: AWAIT_HOLDING_LOCK ) ,
1160+ LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
11601161 LintId :: of( & checked_conversions:: CHECKED_CONVERSIONS ) ,
11611162 LintId :: of( & copies:: MATCH_SAME_ARMS ) ,
11621163 LintId :: of( & copies:: SAME_FUNCTIONS_IN_IF_CONDITION ) ,
@@ -1254,7 +1255,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12541255 LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
12551256 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
12561257 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1257- LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
12581258 LintId :: of( & blacklisted_name:: BLACKLISTED_NAME ) ,
12591259 LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
12601260 LintId :: of( & booleans:: LOGIC_BUG ) ,
@@ -1512,7 +1512,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15121512 LintId :: of( & assign_ops:: ASSIGN_OP_PATTERN ) ,
15131513 LintId :: of( & attrs:: BLANKET_CLIPPY_RESTRICTION_LINTS ) ,
15141514 LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
1515- LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
15161515 LintId :: of( & blacklisted_name:: BLACKLISTED_NAME ) ,
15171516 LintId :: of( & blocks_in_if_conditions:: BLOCKS_IN_IF_CONDITIONS ) ,
15181517 LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
0 commit comments