@@ -1224,6 +1224,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1224
1224
1225
1225
store. register_group ( true , "clippy::pedantic" , Some ( "clippy_pedantic" ) , vec ! [
1226
1226
LintId :: of( & attrs:: INLINE_ALWAYS ) ,
1227
+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1228
+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
1227
1229
LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
1228
1230
LintId :: of( & checked_conversions:: CHECKED_CONVERSIONS ) ,
1229
1231
LintId :: of( & copies:: SAME_FUNCTIONS_IN_IF_CONDITION ) ,
@@ -1327,8 +1329,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1327
1329
LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
1328
1330
LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
1329
1331
LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1330
- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1331
- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
1332
1332
LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
1333
1333
LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1334
1334
LintId :: of( & blacklisted_name:: BLACKLISTED_NAME ) ,
@@ -1793,8 +1793,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1793
1793
LintId :: of( & attrs:: DEPRECATED_SEMVER ) ,
1794
1794
LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
1795
1795
LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1796
- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1797
- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
1798
1796
LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
1799
1797
LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
1800
1798
LintId :: of( & booleans:: LOGIC_BUG ) ,
0 commit comments