@@ -1174,7 +1174,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11741174 LintId :: of( & booleans:: LOGIC_BUG ) ,
11751175 LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
11761176 LintId :: of( & bytecount:: NAIVE_BYTECOUNT ) ,
1177- LintId :: of( & cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
11781177 LintId :: of( & collapsible_if:: COLLAPSIBLE_IF ) ,
11791178 LintId :: of( & comparison_chain:: COMPARISON_CHAIN ) ,
11801179 LintId :: of( & copies:: IFS_SAME_COND ) ,
@@ -1509,7 +1508,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15091508 LintId :: of( & assign_ops:: MISREFACTORED_ASSIGN_OP ) ,
15101509 LintId :: of( & attrs:: DEPRECATED_CFG_ATTR ) ,
15111510 LintId :: of( & booleans:: NONMINIMAL_BOOL ) ,
1512- LintId :: of( & cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
15131511 LintId :: of( & double_comparison:: DOUBLE_COMPARISONS ) ,
15141512 LintId :: of( & double_parens:: DOUBLE_PARENS ) ,
15151513 LintId :: of( & duration_subsec:: DURATION_SUBSEC ) ,
@@ -1678,6 +1676,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
16781676
16791677 store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
16801678 LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
1679+ LintId :: of( & cognitive_complexity:: COGNITIVE_COMPLEXITY ) ,
16811680 LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
16821681 LintId :: of( & floating_point_arithmetic:: IMPRECISE_FLOPS ) ,
16831682 LintId :: of( & floating_point_arithmetic:: SUBOPTIMAL_FLOPS ) ,
0 commit comments