@@ -1224,6 +1224,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12241224
12251225 store. register_group ( true , "clippy::pedantic" , Some ( "clippy_pedantic" ) , vec ! [
12261226 LintId :: of( & attrs:: INLINE_ALWAYS ) ,
1227+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1228+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
12271229 LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
12281230 LintId :: of( & checked_conversions:: CHECKED_CONVERSIONS ) ,
12291231 LintId :: of( & copies:: SAME_FUNCTIONS_IN_IF_CONDITION ) ,
@@ -1327,8 +1329,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13271329 LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
13281330 LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
13291331 LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1330- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1331- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
13321332 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
13331333 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
13341334 LintId :: of( & blacklisted_name:: BLACKLISTED_NAME ) ,
@@ -1793,8 +1793,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17931793 LintId :: of( & attrs:: DEPRECATED_SEMVER ) ,
17941794 LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
17951795 LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1796- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1797- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
17981796 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
17991797 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
18001798 LintId :: of( & booleans:: LOGIC_BUG ) ,
0 commit comments