@@ -1152,6 +1152,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11521152 LintId :: of( & needless_continue:: NEEDLESS_CONTINUE ) ,
11531153 LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
11541154 LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
1155+ LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
11551156 LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
11561157 LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
11571158 LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1362,7 +1363,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13621363 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
13631364 LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
13641365 LintId :: of( & option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
1365- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
13661366 LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
13671367 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
13681368 LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
@@ -1511,7 +1511,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15111511 LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
15121512 LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
15131513 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1514- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
15151514 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
15161515 LintId :: of( & ptr:: CMP_NULL ) ,
15171516 LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments