From 1cab0cbaf0dddb4cd403c4a0c391315801a22835 Mon Sep 17 00:00:00 2001 From: blyxyas Date: Wed, 15 Mar 2023 23:20:52 +0100 Subject: [PATCH] Fix formatting, remove commented code, etc... --- clippy_lints/src/allow_attributes.rs | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/clippy_lints/src/allow_attributes.rs b/clippy_lints/src/allow_attributes.rs index 3d660a11e..15d46e954 100644 --- a/clippy_lints/src/allow_attributes.rs +++ b/clippy_lints/src/allow_attributes.rs @@ -6,7 +6,7 @@ use rustc_lint::{LateContext, LateLintPass}; use rustc_session::{declare_lint_pass, declare_tool_lint}; declare_clippy_lint! { - /// Detects uses of the `#[allow]` attribute and suggests replacing it with + /// Detects uses of the `#[allow]` attribute and suggests replacing it with /// the `#[expect]` (See [RFC 2383](https://rust-lang.github.io/rfcs/2383-lint-reasons.html)) /// /// The expect attribute is still unstable and requires the `lint_reasons` @@ -28,11 +28,11 @@ declare_clippy_lint! { /// fn foo() -> usize { /// let mut a = Vec::new(); /// a.len() - ///} + /// } /// ``` /// Use instead: /// ```rust,ignore - /// # #![feature(lint_reasons)] + /// #![feature(lint_reasons)] /// #[expect(unused_mut)] /// fn foo() -> usize { /// let mut a = Vec::new(); @@ -61,18 +61,10 @@ impl LateLintPass<'_> for AllowAttribute { ALLOW_ATTRIBUTES, ident.span, "#[allow] attribute found", - "replace it with", "expect".into() - // format!("expect{}", snippet( - // cx, - // ident.span - // .with_lo( - // ident.span.hi() + BytePos(2) // Cut *( - // ) - // .with_hi( - // attr.meta().unwrap().span.hi() - BytePos(1) // Cut ) - // ) - // , "...")) - , Applicability::MachineApplicable); + "replace it with", + "expect".into(), + Applicability::MachineApplicable, + ); } } }