@@ -544,6 +544,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
544
544
& get_last_with_len:: GET_LAST_WITH_LEN ,
545
545
& identity_conversion:: IDENTITY_CONVERSION ,
546
546
& identity_op:: IDENTITY_OP ,
547
+ & if_let_some_result:: IF_LET_SOME_RESULT ,
547
548
& if_not_else:: IF_NOT_ELSE ,
548
549
& implicit_return:: IMPLICIT_RETURN ,
549
550
& indexing_slicing:: INDEXING_SLICING ,
@@ -701,7 +702,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
701
702
& non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ,
702
703
& non_expressive_names:: MANY_SINGLE_CHAR_NAMES ,
703
704
& non_expressive_names:: SIMILAR_NAMES ,
704
- & if_let_some_result:: IF_LET_SOME_RESULT ,
705
705
& open_options:: NONSENSICAL_OPEN_OPTIONS ,
706
706
& overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ,
707
707
& panic_unimplemented:: PANIC ,
@@ -1148,6 +1148,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1148
1148
LintId :: of( & get_last_with_len:: GET_LAST_WITH_LEN ) ,
1149
1149
LintId :: of( & identity_conversion:: IDENTITY_CONVERSION ) ,
1150
1150
LintId :: of( & identity_op:: IDENTITY_OP ) ,
1151
+ LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
1151
1152
LintId :: of( & indexing_slicing:: OUT_OF_BOUNDS_INDEXING ) ,
1152
1153
LintId :: of( & infallible_destructuring_match:: INFALLIBLE_DESTRUCTURING_MATCH ) ,
1153
1154
LintId :: of( & infinite_iter:: INFINITE_ITER ) ,
@@ -1260,7 +1261,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1260
1261
LintId :: of( & non_copy_const:: DECLARE_INTERIOR_MUTABLE_CONST ) ,
1261
1262
LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
1262
1263
LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1263
- LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
1264
1264
LintId :: of( & open_options:: NONSENSICAL_OPEN_OPTIONS ) ,
1265
1265
LintId :: of( & overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ) ,
1266
1266
LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
@@ -1363,6 +1363,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1363
1363
LintId :: of( & formatting:: SUSPICIOUS_UNARY_OP_FORMATTING ) ,
1364
1364
LintId :: of( & functions:: DOUBLE_MUST_USE ) ,
1365
1365
LintId :: of( & functions:: MUST_USE_UNIT ) ,
1366
+ LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
1366
1367
LintId :: of( & infallible_destructuring_match:: INFALLIBLE_DESTRUCTURING_MATCH ) ,
1367
1368
LintId :: of( & inherent_to_string:: INHERENT_TO_STRING ) ,
1368
1369
LintId :: of( & len_zero:: LEN_WITHOUT_IS_EMPTY ) ,
@@ -1409,7 +1410,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
1409
1410
LintId :: of( & new_without_default:: NEW_WITHOUT_DEFAULT ) ,
1410
1411
LintId :: of( & non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ) ,
1411
1412
LintId :: of( & non_expressive_names:: MANY_SINGLE_CHAR_NAMES ) ,
1412
- LintId :: of( & if_let_some_result:: IF_LET_SOME_RESULT ) ,
1413
1413
LintId :: of( & panic_unimplemented:: PANIC_PARAMS ) ,
1414
1414
LintId :: of( & ptr:: CMP_NULL ) ,
1415
1415
LintId :: of( & ptr:: PTR_ARG ) ,
0 commit comments