@@ -1161,6 +1161,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1161
1161
LintId :: of( & needless_continue:: NEEDLESS_CONTINUE ) ,
1162
1162
LintId :: of( & needless_pass_by_value:: NEEDLESS_PASS_BY_VALUE ) ,
1163
1163
LintId :: of( & non_expressive_names:: SIMILAR_NAMES ) ,
1164
+ LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1164
1165
LintId :: of( & ranges:: RANGE_PLUS_ONE ) ,
1165
1166
LintId :: of( & shadow:: SHADOW_UNRELATED ) ,
1166
1167
LintId :: of( & strings:: STRING_ADD_ASSIGN ) ,
@@ -1372,7 +1373,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1372
1373
LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1373
1374
LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
1374
1375
LintId :: of( & option_env_unwrap:: OPTION_ENV_UNWRAP ) ,
1375
- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1376
1376
LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
1377
1377
LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
1378
1378
LintId :: of( & partialeq_ne_impl:: PARTIALEQ_NE_IMPL ) ,
@@ -1521,7 +1521,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
1521
1521
LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
1522
1522
LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
1523
1523
LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1524
- LintId :: of( & option_if_let_else:: OPTION_IF_LET_ELSE ) ,
1525
1524
LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
1526
1525
LintId :: of( & ptr:: CMP_NULL ) ,
1527
1526
LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments