@@ -1190,8 +1190,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11901190
11911191 store. register_group ( true , "clippy::pedantic" , Some ( "clippy_pedantic" ) , vec ! [
11921192 LintId :: of( & attrs:: INLINE_ALWAYS ) ,
1193- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1194- LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
11951193 LintId :: of( & bit_mask:: VERBOSE_BIT_MASK ) ,
11961194 LintId :: of( & checked_conversions:: CHECKED_CONVERSIONS ) ,
11971195 LintId :: of( & copies:: MATCH_SAME_ARMS ) ,
@@ -1290,6 +1288,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12901288 LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
12911289 LintId :: of( & attrs:: UNKNOWN_CLIPPY_LINTS ) ,
12921290 LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1291+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1292+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
12931293 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
12941294 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
12951295 LintId :: of( & blacklisted_name:: BLACKLISTED_NAME ) ,
@@ -1736,6 +1736,8 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17361736 LintId :: of( & attrs:: DEPRECATED_SEMVER ) ,
17371737 LintId :: of( & attrs:: MISMATCHED_TARGET_OS ) ,
17381738 LintId :: of( & attrs:: USELESS_ATTRIBUTE ) ,
1739+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_LOCK ) ,
1740+ LintId :: of( & await_holding_invalid:: AWAIT_HOLDING_REFCELL_REF ) ,
17391741 LintId :: of( & bit_mask:: BAD_BIT_MASK ) ,
17401742 LintId :: of( & bit_mask:: INEFFECTIVE_BIT_MASK ) ,
17411743 LintId :: of( & booleans:: LOGIC_BUG ) ,
0 commit comments