@@ -546,6 +546,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
546546 & get_last_with_len:: GET_LAST_WITH_LEN ,
547547 & identity_conversion:: IDENTITY_CONVERSION ,
548548 & identity_op:: IDENTITY_OP ,
549+ & if_let_some_result:: IF_LET_SOME_RESULT ,
549550 & if_not_else:: IF_NOT_ELSE ,
550551 & implicit_return:: IMPLICIT_RETURN ,
551552 & indexing_slicing:: INDEXING_SLICING ,
@@ -703,7 +704,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
703704 & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ,
704705 & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ,
705706 & non_expressive_names:: SIMILAR_NAMES ,
706- & if_let_some_result:: IF_LET_SOME_RESULT ,
707707 & open_options:: NONSENSICAL_OPEN_OPTIONS ,
708708 & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ,
709709 & panic_unimplemented:: PANIC ,
@@ -1150,6 +1150,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
11501150 LintId :: of( & get_last_with_len:: GET_LAST_WITH_LEN ) ,
11511151 LintId :: of( & identity_conversion:: IDENTITY_CONVERSION ) ,
11521152 LintId :: of( & identity_op:: IDENTITY_OP ) ,
1153+ LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
11531154 LintId :: of( & indexing_slicing:: OUT_OF_BOUNDS_INDEXING ) ,
11541155 LintId :: of( & infallible_destructuring_match:: INFALLIBLE_DESTRUCTURING_MATCH ) ,
11551156 LintId :: of( & infinite_iter:: INFINITE_ITER ) ,
@@ -1262,7 +1263,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12621263 LintId :: of( & non_copy_const:: DECLARE_INTERIOR_MUTABLE_CONST ) ,
12631264 LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
12641265 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1265- LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
12661266 LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
12671267 LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
12681268 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
@@ -1365,6 +1365,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
13651365 LintId :: of( & formatting:: SUSPICIOUS_UNARY_OP_FORMATTING ) ,
13661366 LintId :: of( & functions:: DOUBLE_MUST_USE ) ,
13671367 LintId :: of( & functions:: MUST_USE_UNIT ) ,
1368+ LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
13681369 LintId :: of( & infallible_destructuring_match:: INFALLIBLE_DESTRUCTURING_MATCH ) ,
13691370 LintId :: of( & inherent_to_string:: INHERENT_TO_STRING ) ,
13701371 LintId :: of( & len_zero:: LEN_WITHOUT_IS_EMPTY ) ,
@@ -1411,7 +1412,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14111412 LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
14121413 LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
14131414 LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1414- LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
14151415 LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
14161416 LintId :: of( & ptr:: CMP_NULL ) ,
14171417 LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments