2015-08-16 01:54:43 -05:00
|
|
|
//! checks for attributes
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2023-07-17 03:19:29 -05: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 06:18:19 -06:00
|
|
|
use clippy_utils::macros::{is_panic, macro_backtrace};
|
2022-12-01 11:29:38 -06:00
|
|
|
use clippy_utils::msrvs::{self, Msrv};
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::source::{first_line_of_span, is_present_in_source, snippet_opt, without_block_comments};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2023-08-24 14:32:12 -05: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 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{
|
2020-03-16 10:00:16 -05:00
|
|
|
Block, Expr, ExprKind, ImplItem, ImplItemKind, Item, ItemKind, StmtKind, TraitFn, TraitItem, TraitItemKind,
|
2020-02-21 02:39:38 -06:00
|
|
|
};
|
2022-11-21 13:34:47 -06:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, Level, LintContext};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
|
|
|
use rustc_middle::ty;
|
2021-12-06 05:33:31 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint, impl_lint_pass};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::Span;
|
2021-12-14 15:32:21 -06:00
|
|
|
use rustc_span::symbol::Symbol;
|
2022-11-21 13:34:47 -06:00
|
|
|
use rustc_span::{sym, DUMMY_SP};
|
2018-11-27 14:14:15 -06:00
|
|
|
use semver::Version;
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2020-04-25 13:55:46 -05:00
|
|
|
static UNIX_SYSTEMS: &[&str] = &[
|
2020-04-22 16:01:25 -05:00
|
|
|
"android",
|
|
|
|
"dragonfly",
|
|
|
|
"emscripten",
|
|
|
|
"freebsd",
|
|
|
|
"fuchsia",
|
|
|
|
"haiku",
|
|
|
|
"illumos",
|
|
|
|
"ios",
|
|
|
|
"l4re",
|
|
|
|
"linux",
|
|
|
|
"macos",
|
|
|
|
"netbsd",
|
|
|
|
"openbsd",
|
|
|
|
"redox",
|
|
|
|
"solaris",
|
|
|
|
"vxworks",
|
|
|
|
];
|
|
|
|
|
2020-04-25 13:55:46 -05:00
|
|
|
// NOTE: windows is excluded from the list because it's also a valid target family.
|
2020-10-27 08:10:31 -05:00
|
|
|
static NON_UNIX_SYSTEMS: &[&str] = &["hermit", "none", "wasi"];
|
2020-04-25 13:55:46 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for items annotated with `#[inline(always)]`,
|
2019-03-05 10:50:33 -06:00
|
|
|
/// unless the annotated function is empty or simply panics.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// While there are valid uses of this annotation (and once
|
2019-03-05 10:50:33 -06: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 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// False positives, big time. This lint is meant to be
|
2019-03-05 10:50:33 -06:00
|
|
|
/// deactivated by everyone doing serious performance work. This means having
|
|
|
|
/// done the measurement.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// #[inline(always)]
|
|
|
|
/// fn not_quite_hot_code(..) { ... }
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-06 03:18:36 -05:00
|
|
|
pub INLINE_ALWAYS,
|
2018-03-28 08:24:26 -05:00
|
|
|
pedantic,
|
2016-08-06 03:18:36 -05:00
|
|
|
"use of `#[inline(always)]`"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `extern crate` and `use` items annotated with
|
2019-03-05 10:50:33 -06:00
|
|
|
/// lint attributes.
|
|
|
|
///
|
2022-06-30 03:50:09 -05: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 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Lint attributes have no effect on crate imports. Most
|
2019-03-05 10:50:33 -06:00
|
|
|
/// likely a `!` was forgotten.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// #[deny(dead_code)]
|
|
|
|
/// extern crate foo;
|
|
|
|
/// #[forbid(dead_code)]
|
|
|
|
/// use foo::bar;
|
2022-06-04 06:34:07 -05:00
|
|
|
/// ```
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2022-06-04 06:34:07 -05:00
|
|
|
/// Use instead:
|
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// #[allow(unused_imports)]
|
|
|
|
/// use foo::baz;
|
|
|
|
/// #[allow(unused_imports)]
|
|
|
|
/// #[macro_use]
|
|
|
|
/// extern crate baz;
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-17 04:36:04 -05:00
|
|
|
pub USELESS_ATTRIBUTE,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2016-08-17 04:36:04 -05:00
|
|
|
"use of lint attributes on `extern crate` items"
|
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[deprecated]` annotations with a `since`
|
2019-03-05 10:50:33 -06:00
|
|
|
/// field that is not a valid semantic version.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// For checking the version of the deprecation, it must be
|
2019-03-05 10:50:33 -06:00
|
|
|
/// a valid semver. Failing that, the contained information is useless.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
|
|
|
/// #[deprecated(since = "forever")]
|
2019-03-05 16:23:50 -06:00
|
|
|
/// fn something_else() { /* ... */ }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-06 03:18:36 -05:00
|
|
|
pub DEPRECATED_SEMVER,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2016-08-06 03:18:36 -05:00
|
|
|
"use of `#[deprecated(since = \"x\")]` where x is not semver"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for empty lines after outer attributes
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
2019-03-05 10:50:33 -06: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 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// Can cause false positives.
|
2019-03-05 10:50:33 -06: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 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
2022-06-04 06:34:07 -05:00
|
|
|
/// #[allow(dead_code)]
|
|
|
|
///
|
|
|
|
/// fn not_quite_good_code() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
2019-03-05 10:50:33 -06:00
|
|
|
/// // Good (as inner attribute)
|
2020-10-09 05:45:29 -05:00
|
|
|
/// #![allow(dead_code)]
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2019-08-03 14:01:23 -05:00
|
|
|
/// fn this_is_fine() { }
|
|
|
|
///
|
2022-06-04 06:34:07 -05:00
|
|
|
/// // or
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
|
|
|
/// // Good (as outer attribute)
|
2020-10-09 05:45:29 -05:00
|
|
|
/// #[allow(dead_code)]
|
2019-08-03 14:01:23 -05:00
|
|
|
/// fn this_is_fine_too() { }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-01-08 17:22:42 -06:00
|
|
|
pub EMPTY_LINE_AFTER_OUTER_ATTR,
|
2018-03-30 04:28:37 -05:00
|
|
|
nursery,
|
2018-01-08 17:22:42 -06:00
|
|
|
"empty line after outer attribute"
|
|
|
|
}
|
|
|
|
|
2023-05-20 08:39:26 -05:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for empty lines after documenation comments.
|
|
|
|
///
|
|
|
|
/// ### 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
|
|
|
|
/// ```rust
|
|
|
|
/// /// Some doc comment with a blank line after it.
|
|
|
|
///
|
|
|
|
/// fn not_quite_good_code() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// /// Good (no blank line)
|
|
|
|
/// fn this_is_fine() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// // Good (convert to a regular comment)
|
|
|
|
///
|
|
|
|
/// fn this_is_fine_too() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// //! 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 07:59:59 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `warn`/`deny`/`forbid` attributes targeting the whole clippy::restriction category.
|
2020-07-14 07:59:59 -05:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Restriction lints sometimes are in contrast with other lints or even go against idiomatic rust.
|
2020-07-14 07:59:59 -05:00
|
|
|
/// These lints should only be enabled on a lint-by-lint basis and with careful consideration.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2020-07-14 07:59:59 -05:00
|
|
|
/// ```rust
|
|
|
|
/// #![deny(clippy::restriction)]
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 06:34:07 -05:00
|
|
|
/// Use instead:
|
2020-07-14 07:59:59 -05:00
|
|
|
/// ```rust
|
|
|
|
/// #![deny(clippy::as_conversions)]
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.47.0"]
|
2020-07-14 07:59:59 -05:00
|
|
|
pub BLANKET_CLIPPY_RESTRICTION_LINTS,
|
2021-07-01 11:17:38 -05:00
|
|
|
suspicious,
|
2020-07-14 07:59:59 -05:00
|
|
|
"enabling the complete restriction group"
|
|
|
|
}
|
|
|
|
|
2018-09-03 08:34:12 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[cfg_attr(rustfmt, rustfmt_skip)]` and suggests to replace it
|
2019-03-05 10:50:33 -06:00
|
|
|
/// with `#[rustfmt::skip]`.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Since tool_attributes ([rust-lang/rust#44690](https://github.com/rust-lang/rust/issues/44690))
|
2019-03-05 10:50:33 -06:00
|
|
|
/// are stable now, they should be used instead of the old `cfg_attr(rustfmt)` attributes.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// This lint doesn't detect crate level inner attributes, because they get
|
2019-03-05 10:50:33 -06:00
|
|
|
/// processed before the PreExpansionPass lints get executed. See
|
|
|
|
/// [#3123](https://github.com/rust-lang/rust-clippy/pull/3123#issuecomment-422321765)
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
|
|
|
/// #[cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
/// fn main() { }
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 06:34:07 -05:00
|
|
|
/// Use instead:
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
|
|
|
/// #[rustfmt::skip]
|
|
|
|
/// fn main() { }
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.32.0"]
|
2018-09-03 08:34:12 -05:00
|
|
|
pub DEPRECATED_CFG_ATTR,
|
|
|
|
complexity,
|
2020-01-06 09:44:52 -06:00
|
|
|
"usage of `cfg_attr(rustfmt)` instead of tool attributes"
|
2018-09-03 08:34:12 -05:00
|
|
|
}
|
|
|
|
|
2020-04-22 16:01:25 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for cfg attributes having operating systems used in target family position.
|
2020-04-22 16:01:25 -05:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The configuration option will not be recognised and the related item will not be included
|
2020-04-22 16:01:25 -05:00
|
|
|
/// by the conditional compilation engine.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2020-04-22 16:01:25 -05:00
|
|
|
/// ```rust
|
|
|
|
/// #[cfg(linux)]
|
|
|
|
/// fn conditional() { }
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 06:34:07 -05:00
|
|
|
/// Use instead:
|
2020-04-22 16:01:25 -05:00
|
|
|
/// ```rust
|
2022-06-04 06:34:07 -05:00
|
|
|
/// # mod hidden {
|
2020-04-22 16:01:25 -05:00
|
|
|
/// #[cfg(target_os = "linux")]
|
|
|
|
/// fn conditional() { }
|
2022-06-04 06:34:07 -05:00
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// // or
|
2020-04-22 16:01:25 -05:00
|
|
|
///
|
|
|
|
/// #[cfg(unix)]
|
|
|
|
/// fn conditional() { }
|
|
|
|
/// ```
|
2020-04-30 18:21:24 -05:00
|
|
|
/// Check the [Rust Reference](https://doc.rust-lang.org/reference/conditional-compilation.html#target_os) for more details.
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.45.0"]
|
2020-04-22 16:01:25 -05:00
|
|
|
pub MISMATCHED_TARGET_OS,
|
|
|
|
correctness,
|
|
|
|
"usage of `cfg(operating_system)` instead of `cfg(target_os = \"operating_system\")`"
|
|
|
|
}
|
|
|
|
|
2022-03-14 06:02:53 -05: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
|
|
|
|
/// ```rust
|
|
|
|
/// #![feature(lint_reasons)]
|
|
|
|
///
|
|
|
|
/// #![allow(clippy::some_lint)]
|
|
|
|
/// ```
|
|
|
|
///
|
2022-06-04 06:34:07 -05:00
|
|
|
/// Use instead:
|
2022-03-14 06:02:53 -05:00
|
|
|
/// ```rust
|
|
|
|
/// #![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 14:32:12 -05: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
|
|
|
|
/// ```rust
|
|
|
|
/// fn random() -> i32 { 0 }
|
|
|
|
///
|
|
|
|
/// #[should_panic]
|
|
|
|
/// #[test]
|
|
|
|
/// fn my_test() {
|
|
|
|
/// let _ = 1 / random();
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// fn random() -> i32 { 0 }
|
|
|
|
///
|
|
|
|
/// #[should_panic = "attempt to divide by zero"]
|
|
|
|
/// #[test]
|
|
|
|
/// fn my_test() {
|
|
|
|
/// let _ = 1 / random();
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[clippy::version = "1.73.0"]
|
|
|
|
pub SHOULD_PANIC_WITHOUT_EXPECT,
|
|
|
|
pedantic,
|
|
|
|
"ensures that all `should_panic` attributes specify its expected panic message"
|
|
|
|
}
|
|
|
|
|
2023-05-20 08:39:26 -05: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
|
|
|
|
/// ```rust
|
|
|
|
/// #[cfg(any(unix))]
|
|
|
|
/// pub struct Bar;
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// #[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 07:35:19 -05:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `#[cfg(features = "...")]` and suggests to replace it with
|
|
|
|
/// `#[cfg(feature = "...")]`.
|
|
|
|
///
|
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Misspelling `feature` as `features` can be sometimes hard to spot. It
|
|
|
|
/// may cause conditional compilation not work quitely.
|
|
|
|
///
|
|
|
|
/// ### Example
|
|
|
|
/// ```rust
|
|
|
|
/// #[cfg(features = "some-feature")]
|
|
|
|
/// fn conditional() { }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// #[cfg(feature = "some-feature")]
|
|
|
|
/// fn conditional() { }
|
|
|
|
/// ```
|
|
|
|
#[clippy::version = "1.69.0"]
|
|
|
|
pub MAYBE_MISUSED_CFG,
|
|
|
|
suspicious,
|
|
|
|
"prevent from misusing the wrong attr name"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(Attributes => [
|
2022-03-14 06:02:53 -05:00
|
|
|
ALLOW_ATTRIBUTES_WITHOUT_REASON,
|
2019-04-08 15:43:55 -05:00
|
|
|
INLINE_ALWAYS,
|
|
|
|
DEPRECATED_SEMVER,
|
|
|
|
USELESS_ATTRIBUTE,
|
2020-07-14 07:59:59 -05:00
|
|
|
BLANKET_CLIPPY_RESTRICTION_LINTS,
|
2023-08-24 14:32:12 -05:00
|
|
|
SHOULD_PANIC_WITHOUT_EXPECT,
|
2019-04-08 15:43:55 -05:00
|
|
|
]);
|
2015-05-30 08:10:19 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Attributes {
|
2022-11-21 13:34:47 -06: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 15:41:36 -05:00
|
|
|
fn check_attribute(&mut self, cx: &LateContext<'tcx>, attr: &'tcx Attribute) {
|
2018-12-29 10:29:50 -06:00
|
|
|
if let Some(items) = &attr.meta_item_list() {
|
2019-03-26 04:55:03 -05:00
|
|
|
if let Some(ident) = attr.ident() {
|
2021-04-08 10:50:13 -05:00
|
|
|
if is_lint_level(ident.name) {
|
|
|
|
check_clippy_lint_names(cx, ident.name, items);
|
2019-03-18 06:31:49 -05:00
|
|
|
}
|
2022-03-14 06:02:53 -05:00
|
|
|
if matches!(ident.name, sym::allow | sym::expect) {
|
|
|
|
check_lint_reason(cx, ident.name, items, attr);
|
|
|
|
}
|
2020-11-05 07:29:48 -06:00
|
|
|
if items.is_empty() || !attr.has_name(sym::deprecated) {
|
2019-03-18 06:31:49 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
for item in items {
|
|
|
|
if_chain! {
|
2019-03-18 05:59:09 -05:00
|
|
|
if let NestedMetaItem::MetaItem(mi) = &item;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let MetaItemKind::NameValue(lit) = &mi.kind;
|
2020-11-05 07:29:48 -06:00
|
|
|
if mi.has_name(sym::since);
|
2019-03-18 06:31:49 -05:00
|
|
|
then {
|
2019-03-18 06:05:20 -05:00
|
|
|
check_semver(cx, item.span(), lit);
|
2019-03-18 06:31:49 -05:00
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-30 06:48:39 -06:00
|
|
|
}
|
2016-01-08 19:05:43 -06:00
|
|
|
}
|
2023-08-24 14:32:12 -05:00
|
|
|
if attr.has_name(sym::should_panic) {
|
|
|
|
check_should_panic_reason(cx, attr);
|
|
|
|
}
|
2016-01-08 19:05:43 -06:00
|
|
|
}
|
2016-01-30 06:48:39 -06:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
|
2021-01-24 06:17:54 -06:00
|
|
|
let attrs = cx.tcx.hir().attrs(item.hir_id());
|
2019-04-07 12:44:10 -05:00
|
|
|
if is_relevant_item(cx, item) {
|
2021-06-03 01:41:37 -05:00
|
|
|
check_attrs(cx, item.span, item.ident.name, attrs);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2019-09-27 10:16:06 -05:00
|
|
|
match item.kind {
|
2018-07-19 06:44:26 -05:00
|
|
|
ItemKind::ExternCrate(..) | ItemKind::Use(..) => {
|
2021-01-24 06:17:54 -06:00
|
|
|
let skip_unused_imports = attrs.iter().any(|attr| attr.has_name(sym::macro_use));
|
2018-07-19 06:44:26 -05:00
|
|
|
|
2021-01-24 06:17:54 -06:00
|
|
|
for attr in attrs {
|
2019-04-09 16:19:11 -05:00
|
|
|
if in_external_macro(cx.sess(), attr.span) {
|
|
|
|
return;
|
|
|
|
}
|
2018-12-29 10:29:50 -06:00
|
|
|
if let Some(lint_list) = &attr.meta_item_list() {
|
2021-04-08 10:50:13 -05: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 10:39:06 -05:00
|
|
|
if is_word(lint, sym::unused_imports)
|
2021-04-08 10:50:13 -05:00
|
|
|
|| is_word(lint, sym::deprecated)
|
|
|
|
|| is_word(lint, sym!(unreachable_pub))
|
|
|
|
|| is_word(lint, sym!(unused))
|
2022-05-05 09:12:52 -05:00
|
|
|
|| extract_clippy_lint(lint).map_or(false, |s| {
|
|
|
|
matches!(
|
|
|
|
s.as_str(),
|
2022-06-30 03:50:09 -05:00
|
|
|
"wildcard_imports"
|
|
|
|
| "enum_glob_use"
|
|
|
|
| "redundant_pub_crate"
|
2022-10-06 10:41:53 -05:00
|
|
|
| "macro_use_imports"
|
2022-11-21 13:34:47 -06:00
|
|
|
| "unsafe_removed_from_name"
|
|
|
|
| "module_name_repetitions"
|
|
|
|
| "single_component_path_imports"
|
2022-05-05 09:12:52 -05:00
|
|
|
)
|
|
|
|
})
|
2021-04-08 10:50:13 -05:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ItemKind::ExternCrate(..) => {
|
2022-06-16 10:39:06 -05:00
|
|
|
if is_word(lint, sym::unused_imports) && skip_unused_imports {
|
2021-04-08 10:50:13 -05:00
|
|
|
return;
|
2019-03-18 06:31:49 -05:00
|
|
|
}
|
2021-04-08 10:50:13 -05: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 06:31:49 -05:00
|
|
|
line_span,
|
2021-04-08 10:50:13 -05:00
|
|
|
"if you just forgot a `!`, use",
|
|
|
|
sugg,
|
|
|
|
Applicability::MaybeIncorrect,
|
2019-03-18 06:31:49 -05:00
|
|
|
);
|
2021-04-08 10:50:13 -05:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2019-03-18 06:31:49 -05:00
|
|
|
}
|
2016-08-17 04:36:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx ImplItem<'_>) {
|
2019-04-07 12:44:10 -05:00
|
|
|
if is_relevant_impl(cx, item) {
|
2021-06-03 01:41:37 -05:00
|
|
|
check_attrs(cx, item.span, item.ident.name, cx.tcx.hir().attrs(item.hir_id()));
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {
|
2019-04-07 12:44:10 -05:00
|
|
|
if is_relevant_trait(cx, item) {
|
2021-06-03 01:41:37 -05:00
|
|
|
check_attrs(cx, item.span, item.ident.name, cx.tcx.hir().attrs(item.hir_id()));
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2020-09-10 10:47:07 -05:00
|
|
|
/// Returns the lint name if it is clippy lint.
|
2021-12-14 15:32:21 -06:00
|
|
|
fn extract_clippy_lint(lint: &NestedMetaItem) -> Option<Symbol> {
|
2020-09-10 10:47:07 -05:00
|
|
|
if_chain! {
|
|
|
|
if let Some(meta_item) = lint.meta_item();
|
|
|
|
if meta_item.path.segments.len() > 1;
|
|
|
|
if let tool_name = meta_item.path.segments[0].ident;
|
2021-01-15 03:56:44 -06:00
|
|
|
if tool_name.name == sym::clippy;
|
2020-09-10 10:47:07 -05:00
|
|
|
then {
|
2021-04-08 10:50:13 -05:00
|
|
|
let lint_name = meta_item.path.segments.last().unwrap().ident.name;
|
2021-12-14 15:32:21 -06:00
|
|
|
return Some(lint_name);
|
2020-07-14 07:59:59 -05:00
|
|
|
}
|
|
|
|
}
|
2020-09-10 10:47:07 -05:00
|
|
|
None
|
|
|
|
}
|
2020-07-14 07:59:59 -05:00
|
|
|
|
2023-08-24 14:32:12 -05: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()
|
|
|
|
&& 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()
|
|
|
|
{
|
|
|
|
// `#[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",
|
|
|
|
r#"#[should_panic(expected = /* panic message */)]"#.into(),
|
|
|
|
Applicability::HasPlaceholders,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
fn check_clippy_lint_names(cx: &LateContext<'_>, name: Symbol, items: &[NestedMetaItem]) {
|
2020-07-14 07:59:59 -05:00
|
|
|
for lint in items {
|
2020-09-10 10:47:07 -05:00
|
|
|
if let Some(lint_name) = extract_clippy_lint(lint) {
|
2021-12-14 15:32:21 -06:00
|
|
|
if lint_name.as_str() == "restriction" && name != sym::allow {
|
2020-07-14 07:59:59 -05:00
|
|
|
span_lint_and_help(
|
|
|
|
cx,
|
|
|
|
BLANKET_CLIPPY_RESTRICTION_LINTS,
|
|
|
|
lint.span(),
|
2022-11-21 13:34:47 -06:00
|
|
|
"`clippy::restriction` is not meant to be enabled as a group",
|
2020-07-14 07:59:59 -05:00
|
|
|
None,
|
2022-11-21 13:34:47 -06:00
|
|
|
"enable the restriction lints you need individually",
|
2018-09-10 10:09:15 -05:00
|
|
|
);
|
|
|
|
}
|
2020-07-14 07:59:59 -05:00
|
|
|
}
|
2018-09-10 10:09:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
fn check_lint_reason<'cx>(cx: &LateContext<'cx>, name: Symbol, items: &[NestedMetaItem], attr: &'cx Attribute) {
|
2022-03-14 06:02:53 -05:00
|
|
|
// Check for the feature
|
2022-12-05 11:52:17 -06:00
|
|
|
if !cx.tcx.features().lint_reasons {
|
2022-03-14 06:02:53 -05: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 13:34:47 -06:00
|
|
|
// Check if the attribute is in an external macro and therefore out of the developer's control
|
2023-07-02 07:35:19 -05:00
|
|
|
if in_external_macro(cx.sess(), attr.span) || is_from_proc_macro(cx, &attr) {
|
2022-11-21 13:34:47 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-14 06:02:53 -05: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 15:41:36 -05:00
|
|
|
fn is_relevant_item(cx: &LateContext<'_>, item: &Item<'_>) -> bool {
|
2019-11-08 14:12:08 -06:00
|
|
|
if let ItemKind::Fn(_, _, eid) = item.kind {
|
2022-09-09 06:36:26 -05:00
|
|
|
is_relevant_expr(cx, cx.tcx.typeck_body(eid), cx.tcx.hir().body(eid).value)
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
2018-01-23 14:32:06 -06:00
|
|
|
true
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn is_relevant_impl(cx: &LateContext<'_>, item: &ImplItem<'_>) -> bool {
|
2019-09-27 10:16:06 -05:00
|
|
|
match item.kind {
|
2022-09-09 06:36:26 -05:00
|
|
|
ImplItemKind::Fn(_, eid) => is_relevant_expr(cx, cx.tcx.typeck_body(eid), cx.tcx.hir().body(eid).value),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn is_relevant_trait(cx: &LateContext<'_>, item: &TraitItem<'_>) -> bool {
|
2019-09-27 10:16:06 -05:00
|
|
|
match item.kind {
|
2020-03-16 10:00:16 -05:00
|
|
|
TraitItemKind::Fn(_, TraitFn::Required(_)) => true,
|
|
|
|
TraitItemKind::Fn(_, TraitFn::Provided(eid)) => {
|
2022-09-09 06:36:26 -05:00
|
|
|
is_relevant_expr(cx, cx.tcx.typeck_body(eid), cx.tcx.hir().body(eid).value)
|
2017-01-13 10:04:56 -06:00
|
|
|
},
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => false,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2020-07-17 03:47:04 -05:00
|
|
|
fn is_relevant_block(cx: &LateContext<'_>, typeck_results: &ty::TypeckResults<'_>, block: &Block<'_>) -> bool {
|
2020-07-14 07:59:59 -05:00
|
|
|
block.stmts.first().map_or(
|
2020-07-17 03:47:04 -05:00
|
|
|
block
|
|
|
|
.expr
|
|
|
|
.as_ref()
|
|
|
|
.map_or(false, |e| is_relevant_expr(cx, typeck_results, e)),
|
2020-07-14 07:59:59 -05:00
|
|
|
|stmt| match &stmt.kind {
|
2019-01-20 04:21:30 -06:00
|
|
|
StmtKind::Local(_) => true,
|
2020-07-17 03:47:04 -05:00
|
|
|
StmtKind::Expr(expr) | StmtKind::Semi(expr) => is_relevant_expr(cx, typeck_results, expr),
|
2021-03-25 13:29:11 -05:00
|
|
|
StmtKind::Item(_) => false,
|
2020-07-14 07:59:59 -05:00
|
|
|
},
|
|
|
|
)
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
2020-07-17 03:47:04 -05:00
|
|
|
fn is_relevant_expr(cx: &LateContext<'_>, typeck_results: &ty::TypeckResults<'_>, expr: &Expr<'_>) -> bool {
|
2022-01-13 06:18:19 -06: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 10:16:06 -05:00
|
|
|
match &expr.kind {
|
2020-07-17 03:47:04 -05: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 02:30:57 -05:00
|
|
|
ExprKind::Ret(None) | ExprKind::Break(_, None) => false,
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => true,
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|
|
|
|
|
2020-08-11 08:43:21 -05:00
|
|
|
fn check_attrs(cx: &LateContext<'_>, span: Span, name: Symbol, attrs: &[Attribute]) {
|
2019-08-19 11:30:32 -05:00
|
|
|
if span.from_expansion() {
|
2016-01-03 22:26:12 -06:00
|
|
|
return;
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
|
|
for attr in attrs {
|
2018-12-29 10:29:50 -06:00
|
|
|
if let Some(values) = attr.meta_item_list() {
|
2020-11-05 07:29:48 -06:00
|
|
|
if values.len() != 1 || !attr.has_name(sym::inline) {
|
2016-01-03 22:26:12 -06:00
|
|
|
continue;
|
|
|
|
}
|
2020-11-05 07:29:48 -06:00
|
|
|
if is_word(&values[0], sym::always) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
INLINE_ALWAYS,
|
|
|
|
attr.span,
|
2022-10-06 02:44:38 -05:00
|
|
|
&format!("you have declared `#[inline(always)]` on `{name}`. This is usually a bad idea"),
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|
2016-01-08 19:05:43 -06:00
|
|
|
|
2022-11-22 22:39:42 -06:00
|
|
|
fn check_semver(cx: &LateContext<'_>, span: Span, lit: &MetaItemLit) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let LitKind::Str(is, _) = lit.kind {
|
2021-12-14 21:39:23 -06:00
|
|
|
if Version::parse(is.as_str()).is_ok() {
|
2016-01-08 19:05:43 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
DEPRECATED_SEMVER,
|
|
|
|
span,
|
|
|
|
"the since field must contain a semver-compliant version",
|
|
|
|
);
|
2016-01-08 19:05:43 -06:00
|
|
|
}
|
2016-08-28 10:54:32 -05:00
|
|
|
|
2019-05-13 18:34:08 -05:00
|
|
|
fn is_word(nmi: &NestedMetaItem, expected: Symbol) -> bool {
|
2019-03-18 05:59:09 -05:00
|
|
|
if let NestedMetaItem::MetaItem(mi) = &nmi {
|
2020-08-02 05:17:20 -05:00
|
|
|
mi.is_word() && mi.has_name(expected)
|
2016-11-23 14:19:03 -06:00
|
|
|
} else {
|
|
|
|
false
|
2016-08-28 10:54:32 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-26 00:51:27 -06:00
|
|
|
|
2021-12-06 05:33:31 -06:00
|
|
|
pub struct EarlyAttributes {
|
2022-12-01 11:29:38 -06:00
|
|
|
pub msrv: Msrv,
|
2021-12-06 05:33:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl_lint_pass!(EarlyAttributes => [
|
2020-05-28 08:45:24 -05:00
|
|
|
DEPRECATED_CFG_ATTR,
|
|
|
|
MISMATCHED_TARGET_OS,
|
|
|
|
EMPTY_LINE_AFTER_OUTER_ATTR,
|
2023-05-20 08:39:26 -05:00
|
|
|
EMPTY_LINE_AFTER_DOC_COMMENTS,
|
|
|
|
NON_MINIMAL_CFG,
|
2023-07-02 07:35:19 -05:00
|
|
|
MAYBE_MISUSED_CFG,
|
2020-05-28 08:45:24 -05:00
|
|
|
]);
|
2018-09-18 04:35:53 -05:00
|
|
|
|
2020-04-22 16:01:25 -05:00
|
|
|
impl EarlyLintPass for EarlyAttributes {
|
2020-04-27 12:56:11 -05:00
|
|
|
fn check_item(&mut self, cx: &EarlyContext<'_>, item: &rustc_ast::Item) {
|
2020-05-28 08:45:24 -05:00
|
|
|
check_empty_line_after_outer_attr(cx, item);
|
|
|
|
}
|
|
|
|
|
2018-09-18 04:35:53 -05:00
|
|
|
fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &Attribute) {
|
2022-12-01 11:29:38 -06:00
|
|
|
check_deprecated_cfg_attr(cx, attr, &self.msrv);
|
2020-04-22 16:01:25 -05:00
|
|
|
check_mismatched_target_os(cx, attr);
|
2023-05-20 08:39:26 -05:00
|
|
|
check_minimal_cfg_condition(cx, attr);
|
2023-07-02 07:35:19 -05:00
|
|
|
check_misused_cfg(cx, attr);
|
2020-04-22 16:01:25 -05:00
|
|
|
}
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
extract_msrv_attr!(EarlyContext);
|
2020-04-22 16:01:25 -05:00
|
|
|
}
|
|
|
|
|
2023-05-20 08:39:26 -05:00
|
|
|
/// Check for empty lines after outer attributes.
|
|
|
|
///
|
|
|
|
/// Attributes and documenation comments are both considered outer attributes
|
|
|
|
/// 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 12:56:11 -05:00
|
|
|
fn check_empty_line_after_outer_attr(cx: &EarlyContext<'_>, item: &rustc_ast::Item) {
|
2022-06-04 06:34:07 -05:00
|
|
|
let mut iter = item.attrs.iter().peekable();
|
|
|
|
while let Some(attr) = iter.next() {
|
2023-05-20 08:39:26 -05:00
|
|
|
if (matches!(attr.kind, AttrKind::Normal(..)) || matches!(attr.kind, AttrKind::DocComment(..)))
|
2022-05-21 06:24:00 -05:00
|
|
|
&& attr.style == AttrStyle::Outer
|
|
|
|
&& is_present_in_source(cx, attr.span)
|
|
|
|
{
|
2021-04-18 07:27:04 -05:00
|
|
|
let begin_of_attr_to_item = Span::new(attr.span.lo(), item.span.lo(), item.span.ctxt(), item.span.parent());
|
2022-06-04 06:34:07 -05: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 08:45:24 -05:00
|
|
|
|
2022-06-04 06:34:07 -05:00
|
|
|
if let Some(snippet) = snippet_opt(cx, end_of_attr_to_next_attr_or_item) {
|
2020-05-28 08:45:24 -05: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 08:39:26 -05: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 08:45:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-01 11:29:38 -06:00
|
|
|
fn check_deprecated_cfg_attr(cx: &EarlyContext<'_>, attr: &Attribute, msrv: &Msrv) {
|
2020-04-22 16:01:25 -05:00
|
|
|
if_chain! {
|
2022-12-01 11:29:38 -06:00
|
|
|
if msrv.meets(msrvs::TOOL_ATTRIBUTES);
|
2020-04-22 16:01:25 -05:00
|
|
|
// check cfg_attr
|
2020-11-05 07:29:48 -06:00
|
|
|
if attr.has_name(sym::cfg_attr);
|
2020-04-22 16:01:25 -05:00
|
|
|
if let Some(items) = attr.meta_item_list();
|
|
|
|
if items.len() == 2;
|
|
|
|
// check for `rustfmt`
|
|
|
|
if let Some(feature_item) = items[0].meta_item();
|
2020-11-05 07:29:48 -06:00
|
|
|
if feature_item.has_name(sym::rustfmt);
|
2020-04-22 16:01:25 -05:00
|
|
|
// check for `rustfmt_skip` and `rustfmt::skip`
|
|
|
|
if let Some(skip_item) = &items[1].meta_item();
|
2022-06-04 06:34:07 -05:00
|
|
|
if skip_item.has_name(sym!(rustfmt_skip))
|
|
|
|
|| skip_item
|
|
|
|
.path
|
|
|
|
.segments
|
|
|
|
.last()
|
|
|
|
.expect("empty path in attribute")
|
|
|
|
.ident
|
|
|
|
.name
|
|
|
|
== sym::skip;
|
2020-04-22 16:01:25 -05:00
|
|
|
// Only lint outer attributes, because custom inner attributes are unstable
|
|
|
|
// Tracking issue: https://github.com/rust-lang/rust/issues/54726
|
2021-10-07 04:21:30 -05:00
|
|
|
if attr.style == AttrStyle::Outer;
|
2020-04-22 16:01:25 -05:00
|
|
|
then {
|
|
|
|
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,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-20 08:39:26 -05:00
|
|
|
fn check_nested_cfg(cx: &EarlyContext<'_>, items: &[NestedMetaItem]) {
|
2023-07-02 07:35:19 -05:00
|
|
|
for item in items {
|
2023-05-20 08:39:26 -05: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 07:35:19 -05:00
|
|
|
fn check_nested_misused_cfg(cx: &EarlyContext<'_>, items: &[NestedMetaItem]) {
|
|
|
|
for item in items {
|
|
|
|
if let NestedMetaItem::MetaItem(meta) = item {
|
|
|
|
if meta.has_name(sym!(features)) && let Some(val) = meta.value_str() {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MAYBE_MISUSED_CFG,
|
|
|
|
meta.span,
|
|
|
|
"feature may misspelled as features",
|
|
|
|
"use",
|
|
|
|
format!("feature = \"{val}\""),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if let MetaItemKind::List(list) = &meta.kind {
|
|
|
|
check_nested_misused_cfg(cx, list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-20 08:39:26 -05:00
|
|
|
fn check_minimal_cfg_condition(cx: &EarlyContext<'_>, attr: &Attribute) {
|
|
|
|
if attr.has_name(sym::cfg) &&
|
|
|
|
let Some(items) = attr.meta_item_list()
|
|
|
|
{
|
|
|
|
check_nested_cfg(cx, &items);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
fn check_misused_cfg(cx: &EarlyContext<'_>, attr: &Attribute) {
|
|
|
|
if attr.has_name(sym::cfg) &&
|
|
|
|
let Some(items) = attr.meta_item_list()
|
|
|
|
{
|
|
|
|
check_nested_misused_cfg(cx, &items);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 16:01:25 -05:00
|
|
|
fn check_mismatched_target_os(cx: &EarlyContext<'_>, attr: &Attribute) {
|
2020-04-25 13:55:46 -05: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 16:01:25 -05:00
|
|
|
fn find_mismatched_target_os(items: &[NestedMetaItem]) -> Vec<(&str, Span)> {
|
|
|
|
let mut mismatched = Vec::new();
|
2020-04-25 13:55:46 -05:00
|
|
|
|
2020-04-22 16:01:25 -05:00
|
|
|
for item in items {
|
|
|
|
if let NestedMetaItem::MetaItem(meta) = item {
|
|
|
|
match &meta.kind {
|
|
|
|
MetaItemKind::List(list) => {
|
2021-04-08 10:50:13 -05:00
|
|
|
mismatched.extend(find_mismatched_target_os(list));
|
2020-04-22 16:01:25 -05:00
|
|
|
},
|
|
|
|
MetaItemKind::Word => {
|
2020-04-25 13:55:46 -05:00
|
|
|
if_chain! {
|
|
|
|
if let Some(ident) = meta.ident();
|
2021-12-14 21:39:23 -06:00
|
|
|
if let Some(os) = find_os(ident.name.as_str());
|
2020-04-25 13:55:46 -05:00
|
|
|
then {
|
2020-04-22 16:01:25 -05:00
|
|
|
mismatched.push((os, ident.span));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-03-25 13:29:11 -05:00
|
|
|
MetaItemKind::NameValue(..) => {},
|
2020-04-22 16:01:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-25 13:55:46 -05:00
|
|
|
|
2020-04-22 16:01:25 -05:00
|
|
|
mismatched
|
|
|
|
}
|
|
|
|
|
|
|
|
if_chain! {
|
2020-11-05 07:29:48 -06:00
|
|
|
if attr.has_name(sym::cfg);
|
2020-04-22 16:01:25 -05:00
|
|
|
if let Some(list) = attr.meta_item_list();
|
2020-04-25 13:55:46 -05:00
|
|
|
let mismatched = find_mismatched_target_os(&list);
|
2020-04-25 16:52:36 -05:00
|
|
|
if !mismatched.is_empty();
|
2020-04-22 16:01:25 -05:00
|
|
|
then {
|
2020-04-25 13:55:46 -05:00
|
|
|
let mess = "operating system used in target family position";
|
2020-04-22 16:01:25 -05:00
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
span_lint_and_then(cx, MISMATCHED_TARGET_OS, attr.span, mess, |diag| {
|
2020-04-25 13:55:46 -05:00
|
|
|
// 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 {
|
2022-10-06 02:44:38 -05:00
|
|
|
let sugg = format!("target_os = \"{os}\"");
|
2020-04-22 16:01:25 -05:00
|
|
|
diag.span_suggestion(span, "try", sugg, Applicability::MaybeIncorrect);
|
2020-04-25 13:55:46 -05:00
|
|
|
|
|
|
|
if !unix_suggested && is_unix(os) {
|
2021-03-12 08:30:50 -06:00
|
|
|
diag.help("did you mean `unix`?");
|
2020-04-25 13:55:46 -05:00
|
|
|
unix_suggested = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-09-18 04:35:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 10:50:13 -05:00
|
|
|
|
|
|
|
fn is_lint_level(symbol: Symbol) -> bool {
|
2022-03-14 06:02:53 -05:00
|
|
|
matches!(symbol, sym::allow | sym::expect | sym::warn | sym::deny | sym::forbid)
|
2021-04-08 10:50:13 -05:00
|
|
|
}
|