rust/clippy_lints/src/dbg_macro.rs

53 lines
1.2 KiB
Rust
Raw Normal View History

use crate::utils::span_help_and_lint;
2019-01-30 11:39:38 -06:00
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
use rustc::{declare_tool_lint, lint_array};
2019-01-31 21:03:13 -06:00
use syntax::ast;
2019-01-30 11:39:38 -06:00
2019-01-31 18:23:40 -06:00
/// **What it does:** Checks for usage of dbg!() macro.
2019-01-30 11:39:38 -06:00
///
2019-01-31 18:23:40 -06:00
/// **Why is this bad?** `dbg!` macro is intended as a debugging tool. It
/// should not be in version control.
2019-01-30 11:39:38 -06:00
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust,ignore
/// // Bad
/// dbg!(true)
///
/// // Good
/// true
/// ```
declare_clippy_lint! {
pub DBG_MACRO,
2019-01-31 18:23:40 -06:00
restriction,
2019-01-30 11:39:38 -06:00
"`dbg!` macro is intended as a debugging tool"
}
#[derive(Copy, Clone, Debug)]
pub struct Pass;
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array!(DBG_MACRO)
}
fn name(&self) -> &'static str {
"DbgMacro"
}
}
impl EarlyLintPass for Pass {
fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::Mac) {
if mac.node.path == "dbg" {
span_help_and_lint(
2019-01-30 11:39:38 -06:00
cx,
DBG_MACRO,
mac.span,
2019-01-31 18:23:40 -06:00
"`dbg!` macro is intended as a debugging tool",
"ensure to avoid having uses of it in version control",
2019-01-30 11:39:38 -06:00
);
}
}
}