mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 14:38:46 +00:00
Move manual_clamp to nursery
This commit is contained in:
parent
910a97d7ce
commit
62061b8a05
1 changed files with 4 additions and 1 deletions
|
@ -35,6 +35,9 @@ declare_clippy_lint! {
|
||||||
/// Some may consider panicking in these situations to be desirable, but it also may
|
/// Some may consider panicking in these situations to be desirable, but it also may
|
||||||
/// introduce panicking where there wasn't any before.
|
/// introduce panicking where there wasn't any before.
|
||||||
///
|
///
|
||||||
|
/// See also [the discussion in the
|
||||||
|
/// PR](https://github.com/rust-lang/rust-clippy/pull/9484#issuecomment-1278922613).
|
||||||
|
///
|
||||||
/// ### Examples
|
/// ### Examples
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// # let (input, min, max) = (0, -2, 1);
|
/// # let (input, min, max) = (0, -2, 1);
|
||||||
|
@ -78,7 +81,7 @@ declare_clippy_lint! {
|
||||||
/// ```
|
/// ```
|
||||||
#[clippy::version = "1.66.0"]
|
#[clippy::version = "1.66.0"]
|
||||||
pub MANUAL_CLAMP,
|
pub MANUAL_CLAMP,
|
||||||
complexity,
|
nursery,
|
||||||
"using a clamp pattern instead of the clamp function"
|
"using a clamp pattern instead of the clamp function"
|
||||||
}
|
}
|
||||||
impl_lint_pass!(ManualClamp => [MANUAL_CLAMP]);
|
impl_lint_pass!(ManualClamp => [MANUAL_CLAMP]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue