Skip to content

Commit 2f78d57

Browse files
author
Michael Wright
committed
Downgrade suspicious_op..._groupings to Nursery
This addresses rust-lang#6722.
1 parent 41bb092 commit 2f78d57

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

clippy_lints/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
14081408
LintId::of(slow_vector_initialization::SLOW_VECTOR_INITIALIZATION),
14091409
LintId::of(stable_sort_primitive::STABLE_SORT_PRIMITIVE),
14101410
LintId::of(strings::STRING_FROM_UTF8_AS_BYTES),
1411-
LintId::of(suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS),
14121411
LintId::of(suspicious_trait_impl::SUSPICIOUS_ARITHMETIC_IMPL),
14131412
LintId::of(suspicious_trait_impl::SUSPICIOUS_OP_ASSIGN_IMPL),
14141413
LintId::of(swap::ALMOST_SWAPPED),
@@ -1562,7 +1561,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
15621561
LintId::of(returns::LET_AND_RETURN),
15631562
LintId::of(returns::NEEDLESS_RETURN),
15641563
LintId::of(single_component_path_imports::SINGLE_COMPONENT_PATH_IMPORTS),
1565-
LintId::of(suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS),
15661564
LintId::of(tabs_in_doc_comments::TABS_IN_DOC_COMMENTS),
15671565
LintId::of(to_digit_is_some::TO_DIGIT_IS_SOME),
15681566
LintId::of(try_err::TRY_ERR),
@@ -1789,6 +1787,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
17891787
LintId::of(redundant_pub_crate::REDUNDANT_PUB_CRATE),
17901788
LintId::of(regex::TRIVIAL_REGEX),
17911789
LintId::of(strings::STRING_LIT_AS_BYTES),
1790+
LintId::of(suspicious_operation_groupings::SUSPICIOUS_OPERATION_GROUPINGS),
17921791
LintId::of(transmute::USELESS_TRANSMUTE),
17931792
LintId::of(use_self::USE_SELF),
17941793
]);

clippy_lints/src/suspicious_operation_groupings.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ declare_clippy_lint! {
5959
/// }
6060
/// ```
6161
pub SUSPICIOUS_OPERATION_GROUPINGS,
62-
style,
62+
nursery,
6363
"groupings of binary operations that look suspiciously like typos"
6464
}
6565

0 commit comments

Comments
 (0)