]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/enum_glob_use.rs
549518d3cdeefec845306676638fdfa1f00adf37
[rust.git] / clippy_lints / src / enum_glob_use.rs
1 //! lint on `use`ing all variants of an enum
2
3 use crate::utils::span_lint;
4 use rustc::declare_lint_pass;
5 use rustc::hir::def::{DefKind, Res};
6 use rustc::hir::*;
7 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
8 use rustc_session::declare_tool_lint;
9 use syntax::source_map::Span;
10
11 declare_clippy_lint! {
12     /// **What it does:** Checks for `use Enum::*`.
13     ///
14     /// **Why is this bad?** It is usually better style to use the prefixed name of
15     /// an enumeration variant, rather than importing variants.
16     ///
17     /// **Known problems:** Old-style enumerations that prefix the variants are
18     /// still around.
19     ///
20     /// **Example:**
21     /// ```rust
22     /// use std::cmp::Ordering::*;
23     /// ```
24     pub ENUM_GLOB_USE,
25     pedantic,
26     "use items that import all variants of an enum"
27 }
28
29 declare_lint_pass!(EnumGlobUse => [ENUM_GLOB_USE]);
30
31 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EnumGlobUse {
32     fn check_mod(&mut self, cx: &LateContext<'a, 'tcx>, m: &'tcx Mod, _: Span, _: HirId) {
33         let map = cx.tcx.hir();
34         // only check top level `use` statements
35         for item in &m.item_ids {
36             lint_item(cx, map.expect_item(item.id));
37         }
38     }
39 }
40
41 fn lint_item(cx: &LateContext<'_, '_>, item: &Item) {
42     if item.vis.node.is_pub() {
43         return; // re-exports are fine
44     }
45     if let ItemKind::Use(ref path, UseKind::Glob) = item.kind {
46         if let Res::Def(DefKind::Enum, _) = path.res {
47             span_lint(cx, ENUM_GLOB_USE, item.span, "don't use glob imports for enum variants");
48         }
49     }
50 }