@@ -1152,6 +1152,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1152
1152
LintId :: of( & needless_continue:: NEEDLESS_CONTINUE ) ,
1153
1153
LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
1154
1154
LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
1155
+ LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1155
1156
LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
1156
1157
LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
1157
1158
LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1362,7 +1363,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1362
1363
LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1363
1364
LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
1364
1365
LintId :: of( & option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
1365
- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1366
1366
LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
1367
1367
LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
1368
1368
LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
@@ -1511,7 +1511,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1511
1511
LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
1512
1512
LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
1513
1513
LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1514
- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1515
1514
LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
1516
1515
LintId :: of( & ptr:: CMP_NULL ) ,
1517
1516
LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments