@@ -1162,7 +1162,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11621162 LintId :: of( & booleans:: LOGIC_BUG ) ,
11631163 LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
11641164 LintId :: of( & bytecount:: NAIVE_BYTECOUNT ) ,
1165- LintId :: of( & cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
11661165 LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
11671166 LintId :: of( & comparison_chain:: COMPARISON_CHAIN ) ,
11681167 LintId :: of( & copies:: IFS_SAME_COND ) ,
@@ -1503,7 +1502,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15031502 LintId :: of( & assign_ops:: MISREFACTORED_ASSIGN_OP ) ,
15041503 LintId :: of( & attrs:: DEPRECATED_CFG_ATTR ) ,
15051504 LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
1506- LintId :: of( & cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
15071505 LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
15081506 LintId :: of( & double_parens:: DOUBLE_PARENS ) ,
15091507 LintId :: of( & duration_subsec:: DURATION_SUBSEC ) ,
@@ -1674,6 +1672,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16741672
16751673 store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
16761674 LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1675+ LintId :: of( & cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
16771676 LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
16781677 LintId :: of( & floating_point_arithmetic:: IMPRECISE_FLOPS ) ,
16791678 LintId :: of( & floating_point_arithmetic:: SUBOPTIMAL_FLOPS ) ,
0 commit comments