Skip to content

Commit f4a06b9

Browse files
committed
Run update_lints
1 parent 08680cf commit f4a06b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clippy_lints/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
544544
&get_last_with_len::GET_LAST_WITH_LEN,
545545
&identity_conversion::IDENTITY_CONVERSION,
546546
&identity_op::IDENTITY_OP,
547+
&if_let_some_result::IF_LET_SOME_RESULT,
547548
&if_not_else::IF_NOT_ELSE,
548549
&implicit_return::IMPLICIT_RETURN,
549550
&indexing_slicing::INDEXING_SLICING,
@@ -701,7 +702,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
701702
&non_expressive_names::JUST_UNDERSCORES_AND_DIGITS,
702703
&non_expressive_names::MANY_SINGLE_CHAR_NAMES,
703704
&non_expressive_names::SIMILAR_NAMES,
704-
&if_let_some_result::IF_LET_SOME_RESULT,
705705
&open_options::NONSENSICAL_OPEN_OPTIONS,
706706
&overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL,
707707
&panic_unimplemented::PANIC,
@@ -1148,6 +1148,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
11481148
LintId::of(&get_last_with_len::GET_LAST_WITH_LEN),
11491149
LintId::of(&identity_conversion::IDENTITY_CONVERSION),
11501150
LintId::of(&identity_op::IDENTITY_OP),
1151+
LintId::of(&if_let_some_result::IF_LET_SOME_RESULT),
11511152
LintId::of(&indexing_slicing::OUT_OF_BOUNDS_INDEXING),
11521153
LintId::of(&infallible_destructuring_match::INFALLIBLE_DESTRUCTURING_MATCH),
11531154
LintId::of(&infinite_iter::INFINITE_ITER),
@@ -1260,7 +1261,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
12601261
LintId::of(&non_copy_const::DECLARE_INTERIOR_MUTABLE_CONST),
12611262
LintId::of(&non_expressive_names::JUST_UNDERSCORES_AND_DIGITS),
12621263
LintId::of(&non_expressive_names::MANY_SINGLE_CHAR_NAMES),
1263-
LintId::of(&if_let_some_result::IF_LET_SOME_RESULT),
12641264
LintId::of(&open_options::NONSENSICAL_OPEN_OPTIONS),
12651265
LintId::of(&overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL),
12661266
LintId::of(&panic_unimplemented::PANIC_PARAMS),
@@ -1363,6 +1363,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
13631363
LintId::of(&formatting::SUSPICIOUS_UNARY_OP_FORMATTING),
13641364
LintId::of(&functions::DOUBLE_MUST_USE),
13651365
LintId::of(&functions::MUST_USE_UNIT),
1366+
LintId::of(&if_let_some_result::IF_LET_SOME_RESULT),
13661367
LintId::of(&infallible_destructuring_match::INFALLIBLE_DESTRUCTURING_MATCH),
13671368
LintId::of(&inherent_to_string::INHERENT_TO_STRING),
13681369
LintId::of(&len_zero::LEN_WITHOUT_IS_EMPTY),
@@ -1409,7 +1410,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
14091410
LintId::of(&new_without_default::NEW_WITHOUT_DEFAULT),
14101411
LintId::of(&non_expressive_names::JUST_UNDERSCORES_AND_DIGITS),
14111412
LintId::of(&non_expressive_names::MANY_SINGLE_CHAR_NAMES),
1412-
LintId::of(&if_let_some_result::IF_LET_SOME_RESULT),
14131413
LintId::of(&panic_unimplemented::PANIC_PARAMS),
14141414
LintId::of(&ptr::CMP_NULL),
14151415
LintId::of(&ptr::PTR_ARG),

0 commit comments

Comments
 (0)