@@ -1161,6 +1161,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11611161 LintId :: of( & needless_continue:: NEEDLESS_CONTINUE ) ,
11621162 LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
11631163 LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
1164+ LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
11641165 LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
11651166 LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
11661167 LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1372,7 +1373,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13721373 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
13731374 LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
13741375 LintId :: of( & option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
1375- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
13761376 LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
13771377 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
13781378 LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
@@ -1521,7 +1521,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15211521 LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
15221522 LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
15231523 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1524- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
15251524 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
15261525 LintId :: of( & ptr:: CMP_NULL ) ,
15271526 LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments