@@ -1156,6 +1156,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11561156 LintId :: of( & needless_continue:: NEEDLESS_CONTINUE ) ,
11571157 LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
11581158 LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
1159+ LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
11591160 LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
11601161 LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
11611162 LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1367,7 +1368,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13671368 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
13681369 LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
13691370 LintId :: of( & option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
1370- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
13711371 LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
13721372 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
13731373 LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
@@ -1516,7 +1516,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15161516 LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
15171517 LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
15181518 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1519- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
15201519 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
15211520 LintId :: of( & ptr:: CMP_NULL ) ,
15221521 LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments