2015-08-16 08:54:43 +02:00
|
|
|
//! checks for attributes
|
2015-05-30 15:10:19 +02:00
|
|
|
|
2023-11-02 17:35:56 +01:00
|
|
|
use clippy_config::msrvs::{self, Msrv};
|
2023-07-17 10:19:29 +02:00
|
|
|
use clippy_utils::diagnostics::{span_lint, span_lint_and_help, span_lint_and_sugg, span_lint_and_then};
|
|
|
|
use clippy_utils::is_from_proc_macro;
|
2022-01-13 13:18:19 +01:00
|
|
|
use clippy_utils::macros::{is_panic, macro_backtrace};
|
2021-03-25 19:29:11 +01:00
|
|
|
use clippy_utils::source::{first_line_of_span, is_present_in_source, snippet_opt, without_block_comments};
|
2023-08-24 21:32:12 +02:00
|
|
|
use rustc_ast::token::{Token, TokenKind};
|
|
|
|
use rustc_ast::tokenstream::TokenTree;
|
|
|
|
use rustc_ast::{
|
|
|
|
AttrArgs, AttrArgsEq, AttrKind, AttrStyle, Attribute, LitKind, MetaItemKind, MetaItemLit, NestedMetaItem,
|
|
|
|
};
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 09:39:38 +01:00
|
|
|
use rustc_hir::{
|
2020-03-16 16:00:16 +01:00
|
|
|
Block, Expr, ExprKind, ImplItem, ImplItemKind, Item, ItemKind, StmtKind, TraitFn, TraitItem, TraitItemKind,
|
2020-02-21 09:39:38 +01:00
|
|
|
};
|
2022-11-21 20:34:47 +01:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, Level, LintContext};
|
2020-03-30 11:02:14 +02:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
|
|
|
use rustc_middle::ty;
|
2023-12-01 18:21:58 +01:00
|
|
|
use rustc_session::{declare_lint_pass, impl_lint_pass};
|
2021-12-15 08:32:21 +11:00
|
|
|
use rustc_span::symbol::Symbol;
|
2023-11-16 19:13:24 +01:00
|
|
|
use rustc_span::{sym, Span, DUMMY_SP};
|
2018-11-27 21:14:15 +01:00
|
|
|
use semver::Version;
|
2015-05-30 15:10:19 +02:00
|
|
|
|
2020-04-25 20:55:46 +02:00
|
|
|
static UNIX_SYSTEMS: &[&str] = &[
|
2020-04-22 23:01:25 +02:00
|
|
|
"android",
|
|
|
|
"dragonfly",
|
|
|
|
"emscripten",
|
|
|
|
"freebsd",
|
|
|
|
"fuchsia",
|
|
|
|
"haiku",
|
|
|
|
"illumos",
|
|
|
|
"ios",
|
|
|
|
"l4re",
|
|
|
|
"linux",
|
|
|
|
"macos",
|
|
|
|
"netbsd",
|
|
|
|
"openbsd",
|
|
|
|
"redox",
|
|
|
|
"solaris",
|
|
|
|
"vxworks",
|
|
|
|
];
|
|
|
|
|
2020-04-25 20:55:46 +02:00
|
|
|
// NOTE: windows is excluded from the list because it's also a valid target family.
|
2020-10-27 13:10:31 +00:00
|
|
|
static NON_UNIX_SYSTEMS: &[&str] = &["hermit", "none", "wasi"];
|
2020-04-25 20:55:46 +02:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for items annotated with `#[inline(always)]`,
|
2019-03-05 11:50:33 -05:00
|
|
|
/// unless the annotated function is empty or simply panics.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// While there are valid uses of this annotation (and once
|
2019-03-05 11:50:33 -05:00
|
|
|
/// you know when to use it, by all means `allow` this lint), it's a common
|
|
|
|
/// newbie-mistake to pepper one's code with it.
|
|
|
|
///
|
|
|
|
/// As a rule of thumb, before slapping `#[inline(always)]` on a function,
|
|
|
|
/// measure if that additional function call really affects your runtime profile
|
|
|
|
/// sufficiently to make up for the increase in compile time.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Known problems
|
|
|
|
/// False positives, big time. This lint is meant to be
|
2019-03-05 11:50:33 -05:00
|
|
|
/// deactivated by everyone doing serious performance work. This means having
|
|
|
|
/// done the measurement.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2019-03-05 17:23:50 -05:00
|
|
|
/// ```ignore
|
2019-03-05 11:50:33 -05:00
|
|
|
/// #[inline(always)]
|
|
|
|
/// fn not_quite_hot_code(..) { ... }
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-06 10:18:36 +02:00
|
|
|
pub INLINE_ALWAYS,
|
2018-03-28 15:24:26 +02:00
|
|
|
pedantic,
|
2016-08-06 10:18:36 +02:00
|
|
|
"use of `#[inline(always)]`"
|
2016-02-06 00:13:29 +01:00
|
|
|
}
|
2015-05-30 15:10:19 +02:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `extern crate` and `use` items annotated with
|
2019-03-05 11:50:33 -05:00
|
|
|
/// lint attributes.
|
|
|
|
///
|
2022-06-30 10:50:09 +02:00
|
|
|
/// This lint permits lint attributes for lints emitted on the items themself.
|
|
|
|
/// For `use` items these lints are:
|
|
|
|
/// * deprecated
|
|
|
|
/// * unreachable_pub
|
|
|
|
/// * unused_imports
|
|
|
|
/// * clippy::enum_glob_use
|
|
|
|
/// * clippy::macro_use_imports
|
|
|
|
/// * clippy::wildcard_imports
|
|
|
|
///
|
|
|
|
/// For `extern crate` items these lints are:
|
|
|
|
/// * `unused_imports` on items with `#[macro_use]`
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Lint attributes have no effect on crate imports. Most
|
2019-03-05 11:50:33 -05:00
|
|
|
/// likely a `!` was forgotten.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2019-03-05 17:23:50 -05:00
|
|
|
/// ```ignore
|
2019-03-05 11:50:33 -05:00
|
|
|
/// #[deny(dead_code)]
|
|
|
|
/// extern crate foo;
|
|
|
|
/// #[forbid(dead_code)]
|
|
|
|
/// use foo::bar;
|
2022-06-04 13:34:07 +02:00
|
|
|
/// ```
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2022-06-04 13:34:07 +02:00
|
|
|
/// Use instead:
|
|
|
|
/// ```rust,ignore
|
2019-03-05 11:50:33 -05:00
|
|
|
/// #[allow(unused_imports)]
|
|
|
|
/// use foo::baz;
|
|
|
|
/// #[allow(unused_imports)]
|
|
|
|
/// #[macro_use]
|
|
|
|
/// extern crate baz;
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-17 11:36:04 +02:00
|
|
|
pub USELESS_ATTRIBUTE,
|
2018-03-28 15:24:26 +02:00
|
|
|
correctness,
|
2016-08-17 11:36:04 +02:00
|
|
|
"use of lint attributes on `extern crate` items"
|
|
|
|
}
|
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[deprecated]` annotations with a `since`
|
2023-12-01 18:21:58 +01:00
|
|
|
/// field that is not a valid semantic version. Also allows "TBD" to signal
|
|
|
|
/// future deprecation.
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// For checking the version of the deprecation, it must be
|
2019-03-05 11:50:33 -05:00
|
|
|
/// a valid semver. Failing that, the contained information is useless.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2019-03-05 11:50:33 -05:00
|
|
|
/// #[deprecated(since = "forever")]
|
2019-03-05 17:23:50 -05:00
|
|
|
/// fn something_else() { /* ... */ }
|
2019-03-05 11:50:33 -05:00
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-06 10:18:36 +02:00
|
|
|
pub DEPRECATED_SEMVER,
|
2018-03-28 15:24:26 +02:00
|
|
|
correctness,
|
2016-08-06 10:18:36 +02:00
|
|
|
"use of `#[deprecated(since = \"x\")]` where x is not semver"
|
2016-02-06 00:13:29 +01:00
|
|
|
}
|
2015-05-30 15:10:19 +02:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for empty lines after outer attributes
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
2019-03-05 11:50:33 -05:00
|
|
|
/// Most likely the attribute was meant to be an inner attribute using a '!'.
|
|
|
|
/// If it was meant to be an outer attribute, then the following item
|
|
|
|
/// should not be separated by empty lines.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Known problems
|
|
|
|
/// Can cause false positives.
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
|
|
|
/// From the clippy side it's difficult to detect empty lines between an attributes and the
|
|
|
|
/// following item because empty lines and comments are not part of the AST. The parsing
|
|
|
|
/// currently works for basic cases but is not perfect.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2022-06-04 13:34:07 +02:00
|
|
|
/// #[allow(dead_code)]
|
|
|
|
///
|
|
|
|
/// fn not_quite_good_code() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2019-03-05 11:50:33 -05:00
|
|
|
/// // Good (as inner attribute)
|
2020-10-09 12:45:29 +02:00
|
|
|
/// #![allow(dead_code)]
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2019-08-03 21:01:23 +02:00
|
|
|
/// fn this_is_fine() { }
|
|
|
|
///
|
2022-06-04 13:34:07 +02:00
|
|
|
/// // or
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
|
|
|
/// // Good (as outer attribute)
|
2020-10-09 12:45:29 +02:00
|
|
|
/// #[allow(dead_code)]
|
2019-08-03 21:01:23 +02:00
|
|
|
/// fn this_is_fine_too() { }
|
2019-03-05 11:50:33 -05:00
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-01-09 00:22:42 +01:00
|
|
|
pub EMPTY_LINE_AFTER_OUTER_ATTR,
|
2018-03-30 11:28:37 +02:00
|
|
|
nursery,
|
2018-01-09 00:22:42 +01:00
|
|
|
"empty line after outer attribute"
|
|
|
|
}
|
|
|
|
|
2023-05-20 15:39:26 +02:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
2023-10-05 00:03:04 +09:00
|
|
|
/// Checks for empty lines after documentation comments.
|
2023-05-20 15:39:26 +02:00
|
|
|
///
|
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The documentation comment was most likely meant to be an inner attribute or regular comment.
|
|
|
|
/// If it was intended to be a documentation comment, then the empty line should be removed to
|
|
|
|
/// be more idiomatic.
|
|
|
|
///
|
|
|
|
/// ### Known problems
|
|
|
|
/// Only detects empty lines immediately following the documentation. If the doc comment is followed
|
|
|
|
/// by an attribute and then an empty line, this lint will not trigger. Use `empty_line_after_outer_attr`
|
|
|
|
/// in combination with this lint to detect both cases.
|
|
|
|
///
|
|
|
|
/// Does not detect empty lines after doc attributes (e.g. `#[doc = ""]`).
|
|
|
|
///
|
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-05-20 15:39:26 +02:00
|
|
|
/// /// Some doc comment with a blank line after it.
|
|
|
|
///
|
|
|
|
/// fn not_quite_good_code() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-05-20 15:39:26 +02:00
|
|
|
/// /// Good (no blank line)
|
|
|
|
/// fn this_is_fine() { }
|
|
|
|
/// ```
|
|
|
|
///
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-05-20 15:39:26 +02:00
|
|
|
/// // Good (convert to a regular comment)
|
|
|
|
///
|
|
|
|
/// fn this_is_fine_too() { }
|
|
|
|
/// ```
|
|
|
|
///
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-05-20 15:39:26 +02:00
|
|
|
/// //! Good (convert to a comment on an inner attribute)
|
|
|
|
///
|
|
|
|
/// fn this_is_fine_as_well() { }
|
|
|
|
/// ```
|
|
|
|
#[clippy::version = "1.70.0"]
|
|
|
|
pub EMPTY_LINE_AFTER_DOC_COMMENTS,
|
|
|
|
nursery,
|
|
|
|
"empty line after documentation comments"
|
|
|
|
}
|
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `warn`/`deny`/`forbid` attributes targeting the whole clippy::restriction category.
|
2020-07-14 14:59:59 +02:00
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Restriction lints sometimes are in contrast with other lints or even go against idiomatic rust.
|
2020-07-14 14:59:59 +02:00
|
|
|
/// These lints should only be enabled on a lint-by-lint basis and with careful consideration.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2020-07-14 14:59:59 +02:00
|
|
|
/// #![deny(clippy::restriction)]
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 13:34:07 +02:00
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2020-07-14 14:59:59 +02:00
|
|
|
/// #![deny(clippy::as_conversions)]
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "1.47.0"]
|
2020-07-14 14:59:59 +02:00
|
|
|
pub BLANKET_CLIPPY_RESTRICTION_LINTS,
|
2021-07-01 18:17:38 +02:00
|
|
|
suspicious,
|
2020-07-14 14:59:59 +02:00
|
|
|
"enabling the complete restriction group"
|
|
|
|
}
|
|
|
|
|
2018-09-03 15:34:12 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[cfg_attr(rustfmt, rustfmt_skip)]` and suggests to replace it
|
2019-03-05 11:50:33 -05:00
|
|
|
/// with `#[rustfmt::skip]`.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Since tool_attributes ([rust-lang/rust#44690](https://github.com/rust-lang/rust/issues/44690))
|
2019-03-05 11:50:33 -05:00
|
|
|
/// are stable now, they should be used instead of the old `cfg_attr(rustfmt)` attributes.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Known problems
|
|
|
|
/// This lint doesn't detect crate level inner attributes, because they get
|
2019-03-05 11:50:33 -05:00
|
|
|
/// processed before the PreExpansionPass lints get executed. See
|
|
|
|
/// [#3123](https://github.com/rust-lang/rust-clippy/pull/3123#issuecomment-422321765)
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2019-03-05 11:50:33 -05:00
|
|
|
/// #[cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
/// fn main() { }
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 13:34:07 +02:00
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2019-03-05 11:50:33 -05:00
|
|
|
/// #[rustfmt::skip]
|
|
|
|
/// fn main() { }
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "1.32.0"]
|
2018-09-03 15:34:12 +02:00
|
|
|
pub DEPRECATED_CFG_ATTR,
|
|
|
|
complexity,
|
2020-01-07 00:44:52 +09:00
|
|
|
"usage of `cfg_attr(rustfmt)` instead of tool attributes"
|
2018-09-03 15:34:12 +02:00
|
|
|
}
|
|
|
|
|
2020-04-22 23:01:25 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for cfg attributes having operating systems used in target family position.
|
2020-04-22 23:01:25 +02:00
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The configuration option will not be recognised and the related item will not be included
|
2020-04-22 23:01:25 +02:00
|
|
|
/// by the conditional compilation engine.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2020-04-22 23:01:25 +02:00
|
|
|
/// #[cfg(linux)]
|
|
|
|
/// fn conditional() { }
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 13:34:07 +02:00
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2022-06-04 13:34:07 +02:00
|
|
|
/// # mod hidden {
|
2020-04-22 23:01:25 +02:00
|
|
|
/// #[cfg(target_os = "linux")]
|
|
|
|
/// fn conditional() { }
|
2022-06-04 13:34:07 +02:00
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// // or
|
2020-04-22 23:01:25 +02:00
|
|
|
///
|
|
|
|
/// #[cfg(unix)]
|
|
|
|
/// fn conditional() { }
|
|
|
|
/// ```
|
2020-05-01 01:21:24 +02:00
|
|
|
/// Check the [Rust Reference](https://doc.rust-lang.org/reference/conditional-compilation.html#target_os) for more details.
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "1.45.0"]
|
2020-04-22 23:01:25 +02:00
|
|
|
pub MISMATCHED_TARGET_OS,
|
|
|
|
correctness,
|
|
|
|
"usage of `cfg(operating_system)` instead of `cfg(target_os = \"operating_system\")`"
|
|
|
|
}
|
|
|
|
|
2022-03-14 12:02:53 +01:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for attributes that allow lints without a reason.
|
|
|
|
///
|
|
|
|
/// (This requires the `lint_reasons` feature)
|
|
|
|
///
|
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Allowing a lint should always have a reason. This reason should be documented to
|
|
|
|
/// ensure that others understand the reasoning
|
|
|
|
///
|
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2022-03-14 12:02:53 +01:00
|
|
|
/// #![feature(lint_reasons)]
|
|
|
|
///
|
|
|
|
/// #![allow(clippy::some_lint)]
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 13:34:07 +02:00
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2022-03-14 12:02:53 +01:00
|
|
|
/// #![feature(lint_reasons)]
|
|
|
|
///
|
|
|
|
/// #![allow(clippy::some_lint, reason = "False positive rust-lang/rust-clippy#1002020")]
|
|
|
|
/// ```
|
|
|
|
#[clippy::version = "1.61.0"]
|
|
|
|
pub ALLOW_ATTRIBUTES_WITHOUT_REASON,
|
|
|
|
restriction,
|
|
|
|
"ensures that all `allow` and `expect` attributes have a reason"
|
|
|
|
}
|
|
|
|
|
2023-08-24 21:32:12 +02:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[should_panic]` attributes without specifying the expected panic message.
|
|
|
|
///
|
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The expected panic message should be specified to ensure that the test is actually
|
|
|
|
/// panicking with the expected message, and not another unrelated panic.
|
|
|
|
///
|
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-08-24 21:32:12 +02:00
|
|
|
/// fn random() -> i32 { 0 }
|
|
|
|
///
|
|
|
|
/// #[should_panic]
|
|
|
|
/// #[test]
|
|
|
|
/// fn my_test() {
|
|
|
|
/// let _ = 1 / random();
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-08-24 21:32:12 +02:00
|
|
|
/// fn random() -> i32 { 0 }
|
|
|
|
///
|
|
|
|
/// #[should_panic = "attempt to divide by zero"]
|
|
|
|
/// #[test]
|
|
|
|
/// fn my_test() {
|
|
|
|
/// let _ = 1 / random();
|
|
|
|
/// }
|
|
|
|
/// ```
|
2023-11-16 19:13:24 +01:00
|
|
|
#[clippy::version = "1.74.0"]
|
2023-08-24 21:32:12 +02:00
|
|
|
pub SHOULD_PANIC_WITHOUT_EXPECT,
|
|
|
|
pedantic,
|
|
|
|
"ensures that all `should_panic` attributes specify its expected panic message"
|
|
|
|
}
|
|
|
|
|
2023-05-20 15:39:26 +02:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `any` and `all` combinators in `cfg` with only one condition.
|
|
|
|
///
|
|
|
|
/// ### Why is this bad?
|
|
|
|
/// If there is only one condition, no need to wrap it into `any` or `all` combinators.
|
|
|
|
///
|
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-05-20 15:39:26 +02:00
|
|
|
/// #[cfg(any(unix))]
|
|
|
|
/// pub struct Bar;
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-05-20 15:39:26 +02:00
|
|
|
/// #[cfg(unix)]
|
|
|
|
/// pub struct Bar;
|
|
|
|
/// ```
|
|
|
|
#[clippy::version = "1.71.0"]
|
|
|
|
pub NON_MINIMAL_CFG,
|
|
|
|
style,
|
|
|
|
"ensure that all `cfg(any())` and `cfg(all())` have more than one condition"
|
|
|
|
}
|
|
|
|
|
2023-07-02 14:35:19 +02:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[cfg(features = "...")]` and suggests to replace it with
|
|
|
|
/// `#[cfg(feature = "...")]`.
|
|
|
|
///
|
2023-12-01 18:21:58 +01:00
|
|
|
/// It also checks if `cfg(test)` was misspelled.
|
|
|
|
///
|
2023-07-02 14:35:19 +02:00
|
|
|
/// ### Why is this bad?
|
2023-12-01 18:21:58 +01:00
|
|
|
/// Misspelling `feature` as `features` or `test` as `tests` can be sometimes hard to spot. It
|
2023-11-02 17:35:56 +01:00
|
|
|
/// may cause conditional compilation not work quietly.
|
2023-07-02 14:35:19 +02:00
|
|
|
///
|
|
|
|
/// ### Example
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-07-02 14:35:19 +02:00
|
|
|
/// #[cfg(features = "some-feature")]
|
|
|
|
/// fn conditional() { }
|
2023-12-01 18:21:58 +01:00
|
|
|
/// #[cfg(tests)]
|
|
|
|
/// mod tests { }
|
2023-07-02 14:35:19 +02:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 17:35:56 +01:00
|
|
|
/// ```no_run
|
2023-07-02 14:35:19 +02:00
|
|
|
/// #[cfg(feature = "some-feature")]
|
|
|
|
/// fn conditional() { }
|
2023-12-01 18:21:58 +01:00
|
|
|
/// #[cfg(test)]
|
|
|
|
/// mod tests { }
|
2023-07-02 14:35:19 +02:00
|
|
|
/// ```
|
|
|
|
#[clippy::version = "1.69.0"]
|
|
|
|
pub MAYBE_MISUSED_CFG,
|
|
|
|
suspicious,
|
|
|
|
"prevent from misusing the wrong attr name"
|
|
|
|
}
|
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(Attributes => [
|
2022-03-14 12:02:53 +01:00
|
|
|
ALLOW_ATTRIBUTES_WITHOUT_REASON,
|
2019-04-08 13:43:55 -07:00
|
|
|
INLINE_ALWAYS,
|
|
|
|
DEPRECATED_SEMVER,
|
|
|
|
USELESS_ATTRIBUTE,
|
2020-07-14 14:59:59 +02:00
|
|
|
BLANKET_CLIPPY_RESTRICTION_LINTS,
|
2023-08-24 21:32:12 +02:00
|
|
|
SHOULD_PANIC_WITHOUT_EXPECT,
|
2019-04-08 13:43:55 -07:00
|
|
|
]);
|
2015-05-30 15:10:19 +02:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Attributes {
|
2022-11-21 20:34:47 +01:00
|
|
|
fn check_crate(&mut self, cx: &LateContext<'tcx>) {
|
|
|
|
for (name, level) in &cx.sess().opts.lint_opts {
|
|
|
|
if name == "clippy::restriction" && *level > Level::Allow {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
BLANKET_CLIPPY_RESTRICTION_LINTS,
|
|
|
|
DUMMY_SP,
|
|
|
|
"`clippy::restriction` is not meant to be enabled as a group",
|
|
|
|
|diag| {
|
|
|
|
diag.note(format!(
|
|
|
|
"because of the command line `--{} clippy::restriction`",
|
|
|
|
level.as_str()
|
|
|
|
));
|
|
|
|
diag.help("enable the restriction lints you need individually");
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_attribute(&mut self, cx: &LateContext<'tcx>, attr: &'tcx Attribute) {
|
2018-12-29 17:29:50 +01:00
|
|
|
if let Some(items) = &attr.meta_item_list() {
|
2019-03-26 10:55:03 +01:00
|
|
|
if let Some(ident) = attr.ident() {
|
2021-04-08 17:50:13 +02:00
|
|
|
if is_lint_level(ident.name) {
|
|
|
|
check_clippy_lint_names(cx, ident.name, items);
|
2019-03-18 12:31:49 +01:00
|
|
|
}
|
2022-03-14 12:02:53 +01:00
|
|
|
if matches!(ident.name, sym::allow | sym::expect) {
|
|
|
|
check_lint_reason(cx, ident.name, items, attr);
|
|
|
|
}
|
2020-11-05 14:29:48 +01:00
|
|
|
if items.is_empty() || !attr.has_name(sym::deprecated) {
|
2019-03-18 12:31:49 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
for item in items {
|
2023-11-16 19:13:24 +01:00
|
|
|
if let NestedMetaItem::MetaItem(mi) = &item
|
|
|
|
&& let MetaItemKind::NameValue(lit) = &mi.kind
|
|
|
|
&& mi.has_name(sym::since)
|
|
|
|
{
|
2023-12-01 18:21:58 +01:00
|
|
|
check_deprecated_since(cx, item.span(), lit);
|
2017-10-23 15:18:02 -04:00
|
|
|
}
|
|
|
|
}
|
2016-01-30 13:48:39 +01:00
|
|
|
}
|
2016-01-09 02:05:43 +01:00
|
|
|
}
|
2023-08-24 21:32:12 +02:00
|
|
|
if attr.has_name(sym::should_panic) {
|
|
|
|
check_should_panic_reason(cx, attr);
|
|
|
|
}
|
2016-01-09 02:05:43 +01:00
|
|
|
}
|
2016-01-30 13:48:39 +01:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
|
2021-01-24 13:17:54 +01:00
|
|
|
let attrs = cx.tcx.hir().attrs(item.hir_id());
|
2019-04-07 19:44:10 +02:00
|
|
|
if is_relevant_item(cx, item) {
|
2021-06-03 08:41:37 +02:00
|
|
|
check_attrs(cx, item.span, item.ident.name, attrs);
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
2019-09-27 17:16:06 +02:00
|
|
|
match item.kind {
|
2018-07-19 13:44:26 +02:00
|
|
|
ItemKind::ExternCrate(..) | ItemKind::Use(..) => {
|
2021-01-24 13:17:54 +01:00
|
|
|
let skip_unused_imports = attrs.iter().any(|attr| attr.has_name(sym::macro_use));
|
2018-07-19 13:44:26 +02:00
|
|
|
|
2021-01-24 13:17:54 +01:00
|
|
|
for attr in attrs {
|
2019-04-09 23:19:11 +02:00
|
|
|
if in_external_macro(cx.sess(), attr.span) {
|
|
|
|
return;
|
|
|
|
}
|
2018-12-29 17:29:50 +01:00
|
|
|
if let Some(lint_list) = &attr.meta_item_list() {
|
2021-04-08 17:50:13 +02:00
|
|
|
if attr.ident().map_or(false, |ident| is_lint_level(ident.name)) {
|
|
|
|
for lint in lint_list {
|
|
|
|
match item.kind {
|
|
|
|
ItemKind::Use(..) => {
|
2022-06-16 17:39:06 +02:00
|
|
|
if is_word(lint, sym::unused_imports)
|
2021-04-08 17:50:13 +02:00
|
|
|
|| is_word(lint, sym::deprecated)
|
|
|
|
|| is_word(lint, sym!(unreachable_pub))
|
|
|
|
|| is_word(lint, sym!(unused))
|
2022-05-05 15:12:52 +01:00
|
|
|
|| extract_clippy_lint(lint).map_or(false, |s| {
|
|
|
|
matches!(
|
|
|
|
s.as_str(),
|
2022-06-30 10:50:09 +02:00
|
|
|
"wildcard_imports"
|
|
|
|
| "enum_glob_use"
|
|
|
|
| "redundant_pub_crate"
|
2022-10-06 17:41:53 +02:00
|
|
|
| "macro_use_imports"
|
2022-11-21 20:34:47 +01:00
|
|
|
| "unsafe_removed_from_name"
|
|
|
|
| "module_name_repetitions"
|
|
|
|
| "single_component_path_imports"
|
2022-05-05 15:12:52 +01:00
|
|
|
)
|
|
|
|
})
|
2021-04-08 17:50:13 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ItemKind::ExternCrate(..) => {
|
2022-06-16 17:39:06 +02:00
|
|
|
if is_word(lint, sym::unused_imports) && skip_unused_imports {
|
2021-04-08 17:50:13 +02:00
|
|
|
return;
|
2019-03-18 12:31:49 +01:00
|
|
|
}
|
2021-04-08 17:50:13 +02:00
|
|
|
if is_word(lint, sym!(unused_extern_crates)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let line_span = first_line_of_span(cx, attr.span);
|
|
|
|
|
|
|
|
if let Some(mut sugg) = snippet_opt(cx, line_span) {
|
|
|
|
if sugg.contains("#[") {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
USELESS_ATTRIBUTE,
|
|
|
|
line_span,
|
|
|
|
"useless lint attribute",
|
|
|
|
|diag| {
|
|
|
|
sugg = sugg.replacen("#[", "#![", 1);
|
|
|
|
diag.span_suggestion(
|
2019-03-18 12:31:49 +01:00
|
|
|
line_span,
|
2021-04-08 17:50:13 +02:00
|
|
|
"if you just forgot a `!`, use",
|
|
|
|
sugg,
|
|
|
|
Applicability::MaybeIncorrect,
|
2019-03-18 12:31:49 +01:00
|
|
|
);
|
2021-04-08 17:50:13 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2019-03-18 12:31:49 +01:00
|
|
|
}
|
2016-08-17 11:36:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx ImplItem<'_>) {
|
2019-04-07 19:44:10 +02:00
|
|
|
if is_relevant_impl(cx, item) {
|
2021-06-03 08:41:37 +02:00
|
|
|
check_attrs(cx, item.span, item.ident.name, cx.tcx.hir().attrs(item.hir_id()));
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {
|
2019-04-07 19:44:10 +02:00
|
|
|
if is_relevant_trait(cx, item) {
|
2021-06-03 08:41:37 +02:00
|
|
|
check_attrs(cx, item.span, item.ident.name, cx.tcx.hir().attrs(item.hir_id()));
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
|
|
|
}
|
2015-06-07 12:03:56 +02:00
|
|
|
}
|
|
|
|
|
2020-09-10 17:47:07 +02:00
|
|
|
/// Returns the lint name if it is clippy lint.
|
2021-12-15 08:32:21 +11:00
|
|
|
fn extract_clippy_lint(lint: &NestedMetaItem) -> Option<Symbol> {
|
2023-11-16 19:13:24 +01:00
|
|
|
if let Some(meta_item) = lint.meta_item()
|
|
|
|
&& meta_item.path.segments.len() > 1
|
|
|
|
&& let tool_name = meta_item.path.segments[0].ident
|
|
|
|
&& tool_name.name == sym::clippy
|
|
|
|
{
|
|
|
|
let lint_name = meta_item.path.segments.last().unwrap().ident.name;
|
|
|
|
return Some(lint_name);
|
2020-07-14 14:59:59 +02:00
|
|
|
}
|
2020-09-10 17:47:07 +02:00
|
|
|
None
|
|
|
|
}
|
2020-07-14 14:59:59 +02:00
|
|
|
|
2023-08-24 21:32:12 +02:00
|
|
|
fn check_should_panic_reason(cx: &LateContext<'_>, attr: &Attribute) {
|
|
|
|
if let AttrKind::Normal(normal_attr) = &attr.kind {
|
|
|
|
if let AttrArgs::Eq(_, AttrArgsEq::Hir(_)) = &normal_attr.item.args {
|
|
|
|
// `#[should_panic = ".."]` found, good
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let AttrArgs::Delimited(args) = &normal_attr.item.args
|
|
|
|
&& let mut tt_iter = args.tokens.trees()
|
2023-11-02 17:35:56 +01:00
|
|
|
&& let Some(TokenTree::Token(
|
|
|
|
Token {
|
|
|
|
kind: TokenKind::Ident(sym::expected, _),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
_,
|
|
|
|
)) = tt_iter.next()
|
|
|
|
&& let Some(TokenTree::Token(
|
|
|
|
Token {
|
|
|
|
kind: TokenKind::Eq, ..
|
|
|
|
},
|
|
|
|
_,
|
|
|
|
)) = tt_iter.next()
|
|
|
|
&& let Some(TokenTree::Token(
|
|
|
|
Token {
|
|
|
|
kind: TokenKind::Literal(_),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
_,
|
|
|
|
)) = tt_iter.next()
|
2023-08-24 21:32:12 +02:00
|
|
|
{
|
|
|
|
// `#[should_panic(expected = "..")]` found, good
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
SHOULD_PANIC_WITHOUT_EXPECT,
|
|
|
|
attr.span,
|
|
|
|
"#[should_panic] attribute without a reason",
|
|
|
|
"consider specifying the expected panic",
|
2023-09-25 11:28:58 +02:00
|
|
|
"#[should_panic(expected = /* panic message */)]".into(),
|
2023-08-24 21:32:12 +02:00
|
|
|
Applicability::HasPlaceholders,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 17:50:13 +02:00
|
|
|
fn check_clippy_lint_names(cx: &LateContext<'_>, name: Symbol, items: &[NestedMetaItem]) {
|
2020-07-14 14:59:59 +02:00
|
|
|
for lint in items {
|
2020-09-10 17:47:07 +02:00
|
|
|
if let Some(lint_name) = extract_clippy_lint(lint) {
|
2021-12-15 08:32:21 +11:00
|
|
|
if lint_name.as_str() == "restriction" && name != sym::allow {
|
2020-07-14 14:59:59 +02:00
|
|
|
span_lint_and_help(
|
|
|
|
cx,
|
|
|
|
BLANKET_CLIPPY_RESTRICTION_LINTS,
|
|
|
|
lint.span(),
|
2022-11-21 20:34:47 +01:00
|
|
|
"`clippy::restriction` is not meant to be enabled as a group",
|
2020-07-14 14:59:59 +02:00
|
|
|
None,
|
2022-11-21 20:34:47 +01:00
|
|
|
"enable the restriction lints you need individually",
|
2018-09-10 17:09:15 +02:00
|
|
|
);
|
|
|
|
}
|
2020-07-14 14:59:59 +02:00
|
|
|
}
|
2018-09-10 17:09:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-02 14:35:19 +02:00
|
|
|
fn check_lint_reason<'cx>(cx: &LateContext<'cx>, name: Symbol, items: &[NestedMetaItem], attr: &'cx Attribute) {
|
2022-03-14 12:02:53 +01:00
|
|
|
// Check for the feature
|
2022-12-05 17:52:17 +00:00
|
|
|
if !cx.tcx.features().lint_reasons {
|
2022-03-14 12:02:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the reason is present
|
|
|
|
if let Some(item) = items.last().and_then(NestedMetaItem::meta_item)
|
|
|
|
&& let MetaItemKind::NameValue(_) = &item.kind
|
|
|
|
&& item.path == sym::reason
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-11-21 20:34:47 +01:00
|
|
|
// Check if the attribute is in an external macro and therefore out of the developer's control
|
2023-07-02 14:35:19 +02:00
|
|
|
if in_external_macro(cx.sess(), attr.span) || is_from_proc_macro(cx, &attr) {
|
2022-11-21 20:34:47 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-14 12:02:53 +01:00
|
|
|
span_lint_and_help(
|
|
|
|
cx,
|
|
|
|
ALLOW_ATTRIBUTES_WITHOUT_REASON,
|
|
|
|
attr.span,
|
|
|
|
&format!("`{}` attribute without specifying a reason", name.as_str()),
|
|
|
|
None,
|
|
|
|
"try adding a reason at the end with `, reason = \"..\"`",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn is_relevant_item(cx: &LateContext<'_>, item: &Item<'_>) -> bool {
|
2019-11-08 15:12:08 -05:00
|
|
|
if let ItemKind::Fn(_, _, eid) = item.kind {
|
2022-09-09 13:36:26 +02:00
|
|
|
is_relevant_expr(cx, cx.tcx.typeck_body(eid), cx.tcx.hir().body(eid).value)
|
2016-01-04 09:56:12 +05:30
|
|
|
} else {
|
2018-01-23 21:32:06 +01:00
|
|
|
true
|
2016-01-04 09:56:12 +05:30
|
|
|
}
|
2015-06-07 12:03:56 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn is_relevant_impl(cx: &LateContext<'_>, item: &ImplItem<'_>) -> bool {
|
2019-09-27 17:16:06 +02:00
|
|
|
match item.kind {
|
2022-09-09 13:36:26 +02:00
|
|
|
ImplItemKind::Fn(_, eid) => is_relevant_expr(cx, cx.tcx.typeck_body(eid), cx.tcx.hir().body(eid).value),
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => false,
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
2015-06-07 12:03:56 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn is_relevant_trait(cx: &LateContext<'_>, item: &TraitItem<'_>) -> bool {
|
2019-09-27 17:16:06 +02:00
|
|
|
match item.kind {
|
2020-03-16 16:00:16 +01:00
|
|
|
TraitItemKind::Fn(_, TraitFn::Required(_)) => true,
|
|
|
|
TraitItemKind::Fn(_, TraitFn::Provided(eid)) => {
|
2022-09-09 13:36:26 +02:00
|
|
|
is_relevant_expr(cx, cx.tcx.typeck_body(eid), cx.tcx.hir().body(eid).value)
|
2017-01-13 17:04:56 +01:00
|
|
|
},
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => false,
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
2015-06-07 12:03:56 +02:00
|
|
|
}
|
|
|
|
|
2020-07-17 08:47:04 +00:00
|
|
|
fn is_relevant_block(cx: &LateContext<'_>, typeck_results: &ty::TypeckResults<'_>, block: &Block<'_>) -> bool {
|
2020-07-14 14:59:59 +02:00
|
|
|
block.stmts.first().map_or(
|
2020-07-17 08:47:04 +00:00
|
|
|
block
|
|
|
|
.expr
|
|
|
|
.as_ref()
|
|
|
|
.map_or(false, |e| is_relevant_expr(cx, typeck_results, e)),
|
2020-07-14 14:59:59 +02:00
|
|
|
|stmt| match &stmt.kind {
|
2019-01-20 12:21:30 +02:00
|
|
|
StmtKind::Local(_) => true,
|
2020-07-17 08:47:04 +00:00
|
|
|
StmtKind::Expr(expr) | StmtKind::Semi(expr) => is_relevant_expr(cx, typeck_results, expr),
|
2021-03-25 19:29:11 +01:00
|
|
|
StmtKind::Item(_) => false,
|
2020-07-14 14:59:59 +02:00
|
|
|
},
|
|
|
|
)
|
2015-06-07 12:03:56 +02:00
|
|
|
}
|
|
|
|
|
2020-07-17 08:47:04 +00:00
|
|
|
fn is_relevant_expr(cx: &LateContext<'_>, typeck_results: &ty::TypeckResults<'_>, expr: &Expr<'_>) -> bool {
|
2022-01-13 13:18:19 +01:00
|
|
|
if macro_backtrace(expr.span).last().map_or(false, |macro_call| {
|
|
|
|
is_panic(cx, macro_call.def_id) || cx.tcx.item_name(macro_call.def_id) == sym::unreachable
|
|
|
|
}) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-09-27 17:16:06 +02:00
|
|
|
match &expr.kind {
|
2020-07-17 08:47:04 +00:00
|
|
|
ExprKind::Block(block, _) => is_relevant_block(cx, typeck_results, block),
|
|
|
|
ExprKind::Ret(Some(e)) => is_relevant_expr(cx, typeck_results, e),
|
2018-07-12 15:30:57 +08:00
|
|
|
ExprKind::Ret(None) | ExprKind::Break(_, None) => false,
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => true,
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
2015-05-30 15:10:19 +02:00
|
|
|
}
|
|
|
|
|
2020-08-11 15:43:21 +02:00
|
|
|
fn check_attrs(cx: &LateContext<'_>, span: Span, name: Symbol, attrs: &[Attribute]) {
|
2019-08-19 09:30:32 -07:00
|
|
|
if span.from_expansion() {
|
2016-01-04 09:56:12 +05:30
|
|
|
return;
|
|
|
|
}
|
2015-08-11 20:22:20 +02:00
|
|
|
|
|
|
|
for attr in attrs {
|
2018-12-29 17:29:50 +01:00
|
|
|
if let Some(values) = attr.meta_item_list() {
|
2020-11-05 14:29:48 +01:00
|
|
|
if values.len() != 1 || !attr.has_name(sym::inline) {
|
2016-01-04 09:56:12 +05:30
|
|
|
continue;
|
|
|
|
}
|
2020-11-05 14:29:48 +01:00
|
|
|
if is_word(&values[0], sym::always) {
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
INLINE_ALWAYS,
|
|
|
|
attr.span,
|
2022-10-06 09:44:38 +02:00
|
|
|
&format!("you have declared `#[inline(always)]` on `{name}`. This is usually a bad idea"),
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-30 15:10:19 +02:00
|
|
|
}
|
2016-01-09 02:05:43 +01:00
|
|
|
|
2023-12-01 18:21:58 +01:00
|
|
|
fn check_deprecated_since(cx: &LateContext<'_>, span: Span, lit: &MetaItemLit) {
|
2019-09-27 17:16:06 +02:00
|
|
|
if let LitKind::Str(is, _) = lit.kind {
|
2023-12-01 18:21:58 +01:00
|
|
|
if is.as_str() == "TBD" || Version::parse(is.as_str()).is_ok() {
|
2016-01-09 02:05:43 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
DEPRECATED_SEMVER,
|
|
|
|
span,
|
|
|
|
"the since field must contain a semver-compliant version",
|
|
|
|
);
|
2016-01-09 02:05:43 +01:00
|
|
|
}
|
2016-08-28 17:54:32 +02:00
|
|
|
|
2019-05-14 01:34:08 +02:00
|
|
|
fn is_word(nmi: &NestedMetaItem, expected: Symbol) -> bool {
|
2019-03-18 11:59:09 +01:00
|
|
|
if let NestedMetaItem::MetaItem(mi) = &nmi {
|
2020-08-02 13:17:20 +03:00
|
|
|
mi.is_word() && mi.has_name(expected)
|
2016-11-23 21:19:03 +01:00
|
|
|
} else {
|
|
|
|
false
|
2016-08-28 17:54:32 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-26 07:51:27 +01:00
|
|
|
|
2021-12-06 12:33:31 +01:00
|
|
|
pub struct EarlyAttributes {
|
2022-12-01 18:29:38 +01:00
|
|
|
pub msrv: Msrv,
|
2021-12-06 12:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl_lint_pass!(EarlyAttributes => [
|
2020-05-28 15:45:24 +02:00
|
|
|
DEPRECATED_CFG_ATTR,
|
|
|
|
MISMATCHED_TARGET_OS,
|
|
|
|
EMPTY_LINE_AFTER_OUTER_ATTR,
|
2023-05-20 15:39:26 +02:00
|
|
|
EMPTY_LINE_AFTER_DOC_COMMENTS,
|
|
|
|
NON_MINIMAL_CFG,
|
2023-07-02 14:35:19 +02:00
|
|
|
MAYBE_MISUSED_CFG,
|
2020-05-28 15:45:24 +02:00
|
|
|
]);
|
2018-09-18 11:35:53 +02:00
|
|
|
|
2020-04-22 23:01:25 +02:00
|
|
|
impl EarlyLintPass for EarlyAttributes {
|
2020-04-27 23:26:11 +05:30
|
|
|
fn check_item(&mut self, cx: &EarlyContext<'_>, item: &rustc_ast::Item) {
|
2020-05-28 15:45:24 +02:00
|
|
|
check_empty_line_after_outer_attr(cx, item);
|
|
|
|
}
|
|
|
|
|
2018-09-18 11:35:53 +02:00
|
|
|
fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &Attribute) {
|
2022-12-01 18:29:38 +01:00
|
|
|
check_deprecated_cfg_attr(cx, attr, &self.msrv);
|
2020-04-22 23:01:25 +02:00
|
|
|
check_mismatched_target_os(cx, attr);
|
2023-05-20 15:39:26 +02:00
|
|
|
check_minimal_cfg_condition(cx, attr);
|
2023-07-02 14:35:19 +02:00
|
|
|
check_misused_cfg(cx, attr);
|
2020-04-22 23:01:25 +02:00
|
|
|
}
|
2021-12-06 12:33:31 +01:00
|
|
|
|
|
|
|
extract_msrv_attr!(EarlyContext);
|
2020-04-22 23:01:25 +02:00
|
|
|
}
|
|
|
|
|
2023-05-20 15:39:26 +02:00
|
|
|
/// Check for empty lines after outer attributes.
|
|
|
|
///
|
2023-10-05 00:03:04 +09:00
|
|
|
/// Attributes and documentation comments are both considered outer attributes
|
2023-05-20 15:39:26 +02:00
|
|
|
/// by the AST. However, the average user likely considers them to be different.
|
|
|
|
/// Checking for empty lines after each of these attributes is split into two different
|
|
|
|
/// lints but can share the same logic.
|
2020-04-27 23:26:11 +05:30
|
|
|
fn check_empty_line_after_outer_attr(cx: &EarlyContext<'_>, item: &rustc_ast::Item) {
|
2022-06-04 13:34:07 +02:00
|
|
|
let mut iter = item.attrs.iter().peekable();
|
|
|
|
while let Some(attr) = iter.next() {
|
2023-05-20 15:39:26 +02:00
|
|
|
if (matches!(attr.kind, AttrKind::Normal(..)) || matches!(attr.kind, AttrKind::DocComment(..)))
|
2022-05-21 13:24:00 +02:00
|
|
|
&& attr.style == AttrStyle::Outer
|
|
|
|
&& is_present_in_source(cx, attr.span)
|
|
|
|
{
|
2021-04-18 14:27:04 +02:00
|
|
|
let begin_of_attr_to_item = Span::new(attr.span.lo(), item.span.lo(), item.span.ctxt(), item.span.parent());
|
2022-06-04 13:34:07 +02:00
|
|
|
let end_of_attr_to_next_attr_or_item = Span::new(
|
|
|
|
attr.span.hi(),
|
|
|
|
iter.peek().map_or(item.span.lo(), |next_attr| next_attr.span.lo()),
|
|
|
|
item.span.ctxt(),
|
|
|
|
item.span.parent(),
|
|
|
|
);
|
2020-05-28 15:45:24 +02:00
|
|
|
|
2022-06-04 13:34:07 +02:00
|
|
|
if let Some(snippet) = snippet_opt(cx, end_of_attr_to_next_attr_or_item) {
|
2020-05-28 15:45:24 +02:00
|
|
|
let lines = snippet.split('\n').collect::<Vec<_>>();
|
|
|
|
let lines = without_block_comments(lines);
|
|
|
|
|
|
|
|
if lines.iter().filter(|l| l.trim().is_empty()).count() > 2 {
|
2023-05-20 15:39:26 +02:00
|
|
|
let (lint_msg, lint_type) = match attr.kind {
|
|
|
|
AttrKind::DocComment(..) => (
|
|
|
|
"found an empty line after a doc comment. \
|
|
|
|
Perhaps you need to use `//!` to make a comment on a module, remove the empty line, or make a regular comment with `//`?",
|
|
|
|
EMPTY_LINE_AFTER_DOC_COMMENTS,
|
|
|
|
),
|
|
|
|
AttrKind::Normal(..) => (
|
|
|
|
"found an empty line after an outer attribute. \
|
|
|
|
Perhaps you forgot to add a `!` to make it an inner attribute?",
|
|
|
|
EMPTY_LINE_AFTER_OUTER_ATTR,
|
|
|
|
),
|
|
|
|
};
|
|
|
|
|
|
|
|
span_lint(cx, lint_type, begin_of_attr_to_item, lint_msg);
|
2020-05-28 15:45:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-01 18:29:38 +01:00
|
|
|
fn check_deprecated_cfg_attr(cx: &EarlyContext<'_>, attr: &Attribute, msrv: &Msrv) {
|
2023-11-16 19:13:24 +01:00
|
|
|
if msrv.meets(msrvs::TOOL_ATTRIBUTES)
|
2020-04-22 23:01:25 +02:00
|
|
|
// check cfg_attr
|
2023-11-16 19:13:24 +01:00
|
|
|
&& attr.has_name(sym::cfg_attr)
|
|
|
|
&& let Some(items) = attr.meta_item_list()
|
|
|
|
&& items.len() == 2
|
2020-04-22 23:01:25 +02:00
|
|
|
// check for `rustfmt`
|
2023-11-16 19:13:24 +01:00
|
|
|
&& let Some(feature_item) = items[0].meta_item()
|
|
|
|
&& feature_item.has_name(sym::rustfmt)
|
2020-04-22 23:01:25 +02:00
|
|
|
// check for `rustfmt_skip` and `rustfmt::skip`
|
2023-11-16 19:13:24 +01:00
|
|
|
&& let Some(skip_item) = &items[1].meta_item()
|
|
|
|
&& (skip_item.has_name(sym!(rustfmt_skip))
|
2022-06-04 13:34:07 +02:00
|
|
|
|| skip_item
|
|
|
|
.path
|
|
|
|
.segments
|
|
|
|
.last()
|
|
|
|
.expect("empty path in attribute")
|
|
|
|
.ident
|
|
|
|
.name
|
2023-11-16 19:13:24 +01:00
|
|
|
== sym::skip)
|
2020-04-22 23:01:25 +02:00
|
|
|
// Only lint outer attributes, because custom inner attributes are unstable
|
|
|
|
// Tracking issue: https://github.com/rust-lang/rust/issues/54726
|
2023-11-16 19:13:24 +01:00
|
|
|
&& attr.style == AttrStyle::Outer
|
|
|
|
{
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
DEPRECATED_CFG_ATTR,
|
|
|
|
attr.span,
|
|
|
|
"`cfg_attr` is deprecated for rustfmt and got replaced by tool attributes",
|
|
|
|
"use",
|
|
|
|
"#[rustfmt::skip]".to_string(),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
2020-04-22 23:01:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-20 15:39:26 +02:00
|
|
|
fn check_nested_cfg(cx: &EarlyContext<'_>, items: &[NestedMetaItem]) {
|
2023-07-02 14:35:19 +02:00
|
|
|
for item in items {
|
2023-05-20 15:39:26 +02:00
|
|
|
if let NestedMetaItem::MetaItem(meta) = item {
|
|
|
|
if !meta.has_name(sym::any) && !meta.has_name(sym::all) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if let MetaItemKind::List(list) = &meta.kind {
|
|
|
|
check_nested_cfg(cx, list);
|
|
|
|
if list.len() == 1 {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
NON_MINIMAL_CFG,
|
|
|
|
meta.span,
|
|
|
|
"unneeded sub `cfg` when there is only one condition",
|
|
|
|
|diag| {
|
|
|
|
if let Some(snippet) = snippet_opt(cx, list[0].span()) {
|
|
|
|
diag.span_suggestion(meta.span, "try", snippet, Applicability::MaybeIncorrect);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else if list.is_empty() && meta.has_name(sym::all) {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
NON_MINIMAL_CFG,
|
|
|
|
meta.span,
|
|
|
|
"unneeded sub `cfg` when there is no condition",
|
|
|
|
|_| {},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-02 14:35:19 +02:00
|
|
|
fn check_nested_misused_cfg(cx: &EarlyContext<'_>, items: &[NestedMetaItem]) {
|
|
|
|
for item in items {
|
|
|
|
if let NestedMetaItem::MetaItem(meta) = item {
|
2023-12-01 18:21:58 +01:00
|
|
|
if let Some(ident) = meta.ident()
|
|
|
|
&& ident.name.as_str() == "features"
|
2023-11-02 17:35:56 +01:00
|
|
|
&& let Some(val) = meta.value_str()
|
|
|
|
{
|
2023-07-02 14:35:19 +02:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAYBE_MISUSED_CFG,
|
|
|
|
meta.span,
|
2023-12-01 18:21:58 +01:00
|
|
|
"'feature' may be misspelled as 'features'",
|
|
|
|
"did you mean",
|
2023-07-02 14:35:19 +02:00
|
|
|
format!("feature = \"{val}\""),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if let MetaItemKind::List(list) = &meta.kind {
|
|
|
|
check_nested_misused_cfg(cx, list);
|
2023-12-01 18:21:58 +01:00
|
|
|
// If this is not a list, then we check for `cfg(test)`.
|
|
|
|
} else if let Some(ident) = meta.ident()
|
|
|
|
&& matches!(ident.name.as_str(), "tests" | "Test")
|
|
|
|
{
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAYBE_MISUSED_CFG,
|
|
|
|
meta.span,
|
|
|
|
&format!("'test' may be misspelled as '{}'", ident.name.as_str()),
|
|
|
|
"did you mean",
|
|
|
|
"test".to_string(),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
2023-07-02 14:35:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-20 15:39:26 +02:00
|
|
|
fn check_minimal_cfg_condition(cx: &EarlyContext<'_>, attr: &Attribute) {
|
2023-11-02 17:35:56 +01:00
|
|
|
if attr.has_name(sym::cfg)
|
|
|
|
&& let Some(items) = attr.meta_item_list()
|
2023-05-20 15:39:26 +02:00
|
|
|
{
|
|
|
|
check_nested_cfg(cx, &items);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-02 14:35:19 +02:00
|
|
|
fn check_misused_cfg(cx: &EarlyContext<'_>, attr: &Attribute) {
|
2023-11-02 17:35:56 +01:00
|
|
|
if attr.has_name(sym::cfg)
|
|
|
|
&& let Some(items) = attr.meta_item_list()
|
2023-07-02 14:35:19 +02:00
|
|
|
{
|
|
|
|
check_nested_misused_cfg(cx, &items);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 23:01:25 +02:00
|
|
|
fn check_mismatched_target_os(cx: &EarlyContext<'_>, attr: &Attribute) {
|
2020-04-25 20:55:46 +02:00
|
|
|
fn find_os(name: &str) -> Option<&'static str> {
|
|
|
|
UNIX_SYSTEMS
|
|
|
|
.iter()
|
|
|
|
.chain(NON_UNIX_SYSTEMS.iter())
|
|
|
|
.find(|&&os| os == name)
|
|
|
|
.copied()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_unix(name: &str) -> bool {
|
|
|
|
UNIX_SYSTEMS.iter().any(|&os| os == name)
|
|
|
|
}
|
|
|
|
|
2020-04-22 23:01:25 +02:00
|
|
|
fn find_mismatched_target_os(items: &[NestedMetaItem]) -> Vec<(&str, Span)> {
|
|
|
|
let mut mismatched = Vec::new();
|
2020-04-25 20:55:46 +02:00
|
|
|
|
2020-04-22 23:01:25 +02:00
|
|
|
for item in items {
|
|
|
|
if let NestedMetaItem::MetaItem(meta) = item {
|
|
|
|
match &meta.kind {
|
|
|
|
MetaItemKind::List(list) => {
|
2021-04-08 17:50:13 +02:00
|
|
|
mismatched.extend(find_mismatched_target_os(list));
|
2020-04-22 23:01:25 +02:00
|
|
|
},
|
|
|
|
MetaItemKind::Word => {
|
2023-11-16 19:13:24 +01:00
|
|
|
if let Some(ident) = meta.ident()
|
|
|
|
&& let Some(os) = find_os(ident.name.as_str())
|
|
|
|
{
|
|
|
|
mismatched.push((os, ident.span));
|
2020-04-22 23:01:25 +02:00
|
|
|
}
|
|
|
|
},
|
2021-03-25 19:29:11 +01:00
|
|
|
MetaItemKind::NameValue(..) => {},
|
2020-04-22 23:01:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-25 20:55:46 +02:00
|
|
|
|
2020-04-22 23:01:25 +02:00
|
|
|
mismatched
|
|
|
|
}
|
|
|
|
|
2023-11-16 19:13:24 +01:00
|
|
|
if attr.has_name(sym::cfg)
|
|
|
|
&& let Some(list) = attr.meta_item_list()
|
|
|
|
&& let mismatched = find_mismatched_target_os(&list)
|
|
|
|
&& !mismatched.is_empty()
|
|
|
|
{
|
|
|
|
let mess = "operating system used in target family position";
|
|
|
|
|
|
|
|
span_lint_and_then(cx, MISMATCHED_TARGET_OS, attr.span, mess, |diag| {
|
|
|
|
// Avoid showing the unix suggestion multiple times in case
|
|
|
|
// we have more than one mismatch for unix-like systems
|
|
|
|
let mut unix_suggested = false;
|
|
|
|
|
|
|
|
for (os, span) in mismatched {
|
|
|
|
let sugg = format!("target_os = \"{os}\"");
|
|
|
|
diag.span_suggestion(span, "try", sugg, Applicability::MaybeIncorrect);
|
|
|
|
|
|
|
|
if !unix_suggested && is_unix(os) {
|
|
|
|
diag.help("did you mean `unix`?");
|
|
|
|
unix_suggested = true;
|
2020-04-25 20:55:46 +02:00
|
|
|
}
|
2023-11-16 19:13:24 +01:00
|
|
|
}
|
|
|
|
});
|
2018-09-18 11:35:53 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-08 17:50:13 +02:00
|
|
|
|
|
|
|
fn is_lint_level(symbol: Symbol) -> bool {
|
2022-03-14 12:02:53 +01:00
|
|
|
matches!(symbol, sym::allow | sym::expect | sym::warn | sym::deny | sym::forbid)
|
2021-04-08 17:50:13 +02:00
|
|
|
}
|