mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
Warn missing_enforced_import_renames by default
This commit is contained in:
parent
ddbe110081
commit
77c121e817
1 changed files with 4 additions and 1 deletions
|
@ -17,6 +17,9 @@ declare_clippy_lint! {
|
|||
/// Checks for imports that do not rename the item as specified
|
||||
/// in the `enforce-import-renames` config option.
|
||||
///
|
||||
/// Note: Even though this lint is warn-by-default, it will only trigger if
|
||||
/// import renames are defined in the clippy.toml file.
|
||||
///
|
||||
/// ### Why is this bad?
|
||||
/// Consistency is important, if a project has defined import
|
||||
/// renames they should be followed. More practically, some item names are too
|
||||
|
@ -38,7 +41,7 @@ declare_clippy_lint! {
|
|||
/// ```
|
||||
#[clippy::version = "1.55.0"]
|
||||
pub MISSING_ENFORCED_IMPORT_RENAMES,
|
||||
restriction,
|
||||
style,
|
||||
"enforce import renames"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue