Skip to content

Commit 2e66c86

Browse files
committed
Update lint-registration
1 parent d81a475 commit 2e66c86

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

clippy_lints/src/lib.register_all.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
267267
LintId::of(option_env_unwrap::OPTION_ENV_UNWRAP),
268268
LintId::of(overflow_check_conditional::OVERFLOW_CHECK_CONDITIONAL),
269269
LintId::of(partialeq_ne_impl::PARTIALEQ_NE_IMPL),
270+
LintId::of(partialeq_to_none::PARTIALEQ_TO_NONE),
270271
LintId::of(precedence::PRECEDENCE),
271272
LintId::of(ptr::CMP_NULL),
272273
LintId::of(ptr::INVALID_NULL_PTR_USAGE),

clippy_lints/src/lib.register_nursery.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ store.register_group(true, "clippy::nursery", Some("clippy_nursery"), vec![
2222
LintId::of(nonstandard_macro_braces::NONSTANDARD_MACRO_BRACES),
2323
LintId::of(only_used_in_recursion::ONLY_USED_IN_RECURSION),
2424
LintId::of(option_if_let_else::OPTION_IF_LET_ELSE),
25-
LintId::of(partialeq_to_none::PARTIALEQ_TO_NONE),
2625
LintId::of(path_buf_push_overwrite::PATH_BUF_PUSH_OVERWRITE),
2726
LintId::of(redundant_pub_crate::REDUNDANT_PUB_CRATE),
2827
LintId::of(regex::TRIVIAL_REGEX),

clippy_lints/src/lib.register_style.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ store.register_group(true, "clippy::style", Some("clippy_style"), vec![
100100
LintId::of(operators::ASSIGN_OP_PATTERN),
101101
LintId::of(operators::OP_REF),
102102
LintId::of(operators::PTR_EQ),
103+
LintId::of(partialeq_to_none::PARTIALEQ_TO_NONE),
103104
LintId::of(ptr::CMP_NULL),
104105
LintId::of(ptr::PTR_ARG),
105106
LintId::of(question_mark::QUESTION_MARK),

0 commit comments

Comments
 (0)