Downgrade unnested_or_patterns to pedantic
This commit is contained in:
@@ -1187,6 +1187,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
|
|||||||
LintId::of(&types::OPTION_OPTION),
|
LintId::of(&types::OPTION_OPTION),
|
||||||
LintId::of(&unicode::NON_ASCII_LITERAL),
|
LintId::of(&unicode::NON_ASCII_LITERAL),
|
||||||
LintId::of(&unicode::UNICODE_NOT_NFC),
|
LintId::of(&unicode::UNICODE_NOT_NFC),
|
||||||
|
LintId::of(&unnested_or_patterns::UNNESTED_OR_PATTERNS),
|
||||||
LintId::of(&unused_self::UNUSED_SELF),
|
LintId::of(&unused_self::UNUSED_SELF),
|
||||||
LintId::of(&wildcard_imports::ENUM_GLOB_USE),
|
LintId::of(&wildcard_imports::ENUM_GLOB_USE),
|
||||||
LintId::of(&wildcard_imports::WILDCARD_IMPORTS),
|
LintId::of(&wildcard_imports::WILDCARD_IMPORTS),
|
||||||
@@ -1440,7 +1441,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
|
|||||||
LintId::of(&unnamed_address::FN_ADDRESS_COMPARISONS),
|
LintId::of(&unnamed_address::FN_ADDRESS_COMPARISONS),
|
||||||
LintId::of(&unnamed_address::VTABLE_ADDRESS_COMPARISONS),
|
LintId::of(&unnamed_address::VTABLE_ADDRESS_COMPARISONS),
|
||||||
LintId::of(&unnecessary_sort_by::UNNECESSARY_SORT_BY),
|
LintId::of(&unnecessary_sort_by::UNNECESSARY_SORT_BY),
|
||||||
LintId::of(&unnested_or_patterns::UNNESTED_OR_PATTERNS),
|
|
||||||
LintId::of(&unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME),
|
LintId::of(&unsafe_removed_from_name::UNSAFE_REMOVED_FROM_NAME),
|
||||||
LintId::of(&unused_io_amount::UNUSED_IO_AMOUNT),
|
LintId::of(&unused_io_amount::UNUSED_IO_AMOUNT),
|
||||||
LintId::of(&unwrap::PANICKING_UNWRAP),
|
LintId::of(&unwrap::PANICKING_UNWRAP),
|
||||||
@@ -1624,7 +1624,6 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
|
|||||||
LintId::of(&types::UNNECESSARY_CAST),
|
LintId::of(&types::UNNECESSARY_CAST),
|
||||||
LintId::of(&types::VEC_BOX),
|
LintId::of(&types::VEC_BOX),
|
||||||
LintId::of(&unnecessary_sort_by::UNNECESSARY_SORT_BY),
|
LintId::of(&unnecessary_sort_by::UNNECESSARY_SORT_BY),
|
||||||
LintId::of(&unnested_or_patterns::UNNESTED_OR_PATTERNS),
|
|
||||||
LintId::of(&unwrap::UNNECESSARY_UNWRAP),
|
LintId::of(&unwrap::UNNECESSARY_UNWRAP),
|
||||||
LintId::of(&useless_conversion::USELESS_CONVERSION),
|
LintId::of(&useless_conversion::USELESS_CONVERSION),
|
||||||
LintId::of(&zero_div_zero::ZERO_DIVIDED_BY_ZERO),
|
LintId::of(&zero_div_zero::ZERO_DIVIDED_BY_ZERO),
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ declare_clippy_lint! {
|
|||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
pub UNNESTED_OR_PATTERNS,
|
pub UNNESTED_OR_PATTERNS,
|
||||||
complexity,
|
pedantic,
|
||||||
"unnested or-patterns, e.g., `Foo(Bar) | Foo(Baz) instead of `Foo(Bar | Baz)`"
|
"unnested or-patterns, e.g., `Foo(Bar) | Foo(Baz) instead of `Foo(Bar | Baz)`"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2329,7 +2329,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
|
|||||||
},
|
},
|
||||||
Lint {
|
Lint {
|
||||||
name: "unnested_or_patterns",
|
name: "unnested_or_patterns",
|
||||||
group: "complexity",
|
group: "pedantic",
|
||||||
desc: "unnested or-patterns, e.g., `Foo(Bar) | Foo(Baz) instead of `Foo(Bar | Baz)`",
|
desc: "unnested or-patterns, e.g., `Foo(Bar) | Foo(Baz) instead of `Foo(Bar | Baz)`",
|
||||||
deprecation: None,
|
deprecation: None,
|
||||||
module: "unnested_or_patterns",
|
module: "unnested_or_patterns",
|
||||||
|
|||||||
Reference in New Issue
Block a user