You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"ensures that all `allow` and `expect` attributes have a reason"
298
293
}
299
294
295
+
declare_clippy_lint!{
296
+
/// ### What it does
297
+
/// Checks for usage of the `#[allow]` attribute and suggests replacing it with
298
+
/// the `#[expect]` (See [RFC 2383](https://rust-lang.github.io/rfcs/2383-lint-reasons.html))
299
+
///
300
+
/// This lint only warns outer attributes (`#[allow]`), as inner attributes
301
+
/// (`#![allow]`) are usually used to enable or disable lints on a global scale.
302
+
///
303
+
/// ### Why is this bad?
304
+
/// `#[expect]` attributes suppress the lint emission, but emit a warning, if
305
+
/// the expectation is unfulfilled. This can be useful to be notified when the
306
+
/// lint is no longer triggered.
307
+
///
308
+
/// ### Example
309
+
/// ```rust,ignore
310
+
/// #[allow(unused_mut)]
311
+
/// fn foo() -> usize {
312
+
/// let mut a = Vec::new();
313
+
/// a.len()
314
+
/// }
315
+
/// ```
316
+
/// Use instead:
317
+
/// ```rust,ignore
318
+
/// #[expect(unused_mut)]
319
+
/// fn foo() -> usize {
320
+
/// let mut a = Vec::new();
321
+
/// a.len()
322
+
/// }
323
+
/// ```
324
+
#[clippy::version = "1.70.0"]
325
+
pubALLOW_ATTRIBUTES,
326
+
restriction,
327
+
"`#[allow]` will not trigger if a warning isn't found. `#[expect]` triggers if there are no warnings."
328
+
}
329
+
300
330
declare_clippy_lint!{
301
331
/// ### What it does
302
332
/// Checks for `#[should_panic]` attributes without specifying the expected panic message.
0 commit comments