rust-clippy/clippy_lints/src/enum_glob_use.rs

61 lines
1.6 KiB
Rust
Raw Normal View History

//! lint on `use`ing all variants of an enum
2018-05-30 08:15:50 +00:00
use crate::utils::span_lint;
use rustc::hir::def::Def;
use rustc::hir::*;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::{declare_tool_lint, lint_array};
use syntax::source_map::Span;
/// **What it does:** Checks for `use Enum::*`.
///
/// **Why is this bad?** It is usually better style to use the prefixed name of
/// an enumeration variant, rather than importing variants.
///
/// **Known problems:** Old-style enumerations that prefix the variants are
/// still around.
///
2016-07-15 22:25:44 +00:00
/// **Example:**
/// ```rust
/// use std::cmp::Ordering::*;
/// ```
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
pub ENUM_GLOB_USE,
2018-03-28 13:24:26 +00:00
pedantic,
"use items that import all variants of an enum"
}
pub struct EnumGlobUse;
impl LintPass for EnumGlobUse {
fn get_lints(&self) -> LintArray {
lint_array!(ENUM_GLOB_USE)
}
fn name(&self) -> &'static str {
"EnumGlobUse"
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EnumGlobUse {
2019-02-20 10:11:11 +00:00
fn check_mod(&mut self, cx: &LateContext<'a, 'tcx>, m: &'tcx Mod, _: Span, _: HirId) {
// only check top level `use` statements
for item in &m.item_ids {
self.lint_item(cx, cx.tcx.hir().expect_item(item.id));
}
}
}
impl EnumGlobUse {
2018-07-23 11:01:12 +00:00
fn lint_item(&self, cx: &LateContext<'_, '_>, item: &Item) {
if item.vis.node.is_pub() {
return; // re-exports are fine
}
2018-07-16 13:07:39 +00:00
if let ItemKind::Use(ref path, UseKind::Glob) = item.node {
if let Def::Enum(_) = path.def {
2018-11-27 20:14:15 +00:00
span_lint(cx, ENUM_GLOB_USE, item.span, "don't use glob imports for enum variants");
}
}
}
}