Skip to content

Commit

Permalink
run util/dev update_lints and cargo fmt --all
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Feb 3, 2019
1 parent 4b736ff commit 83d620b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -7,7 +7,7 @@

A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.

[There are 295 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
[There are 296 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)

We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:

Expand Down
6 changes: 3 additions & 3 deletions clippy_lints/src/dbg_macro.rs
@@ -1,10 +1,10 @@
use crate::utils::{span_help_and_lint, span_lint_and_sugg, snippet_opt};
use crate::utils::{snippet_opt, span_help_and_lint, span_lint_and_sugg};
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
use rustc::{declare_tool_lint, lint_array};
use syntax::ast;
use rustc_errors::Applicability;
use syntax::tokenstream::TokenStream;
use syntax::ast;
use syntax::source_map::Span;
use syntax::tokenstream::TokenStream;

/// **What it does:** Checks for usage of dbg!() macro.
///
Expand Down

0 comments on commit 83d620b

Please sign in to comment.