From 4af3ac1cd8cf907b142c5cd813f1733289c29063 Mon Sep 17 00:00:00 2001 From: Centri3 <114838443+Centri3@users.noreply.github.com> Date: Thu, 20 Apr 2023 01:19:26 -0500 Subject: [PATCH] change it to nursery category --- clippy_lints/src/excessive_width.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clippy_lints/src/excessive_width.rs b/clippy_lints/src/excessive_width.rs index 84ae54f401e..0e23b39a14e 100644 --- a/clippy_lints/src/excessive_width.rs +++ b/clippy_lints/src/excessive_width.rs @@ -22,7 +22,7 @@ declare_clippy_lint! { /// TODO #[clippy::version = "1.70.0"] pub EXCESSIVE_INDENTATION, - style, + nursery, "check for lines intended beyond a certain threshold" } declare_clippy_lint! { @@ -42,7 +42,7 @@ declare_clippy_lint! { /// TODO #[clippy::version = "1.70.0"] pub EXCESSIVE_WIDTH, - style, + nursery, "check for lines longer than a certain threshold" } impl_lint_pass!(ExcessiveWidth => [EXCESSIVE_INDENTATION, EXCESSIVE_WIDTH]);