@@ -1173,8 +1173,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1173
1173
1174
1174
store. register_group ( true , "clippy::pedantic" , Some ( "clippy_pedantic" ) , vec ! [
1175
1175
LintId :: of( & attrs:: INLINE_ALWAYS ) ,
1176
- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1177
- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
1178
1176
LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1179
1177
LintId :: of( & checked_conversions:: CHECKED_CONVERSIONS ) ,
1180
1178
LintId :: of( & copies:: MATCH_SAME_ARMS ) ,
@@ -1273,6 +1271,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1273
1271
LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
1274
1272
LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
1275
1273
LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1274
+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1275
+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
1276
1276
LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
1277
1277
LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1278
1278
LintId :: of( & blacklisted_name:: BLACKLISTED_NAME ) ,
@@ -1715,6 +1715,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1715
1715
LintId :: of( & attrs:: DEPRECATED_SEMVER ) ,
1716
1716
LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
1717
1717
LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1718
+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1719
+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
1718
1720
LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
1719
1721
LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1720
1722
LintId :: of( & booleans:: LOGIC_BUG ) ,
0 commit comments