1
Fork 0

Rustfmt all the things

This commit is contained in:
Oliver Scherer 2019-05-14 10:06:21 +02:00
parent af80c53450
commit dfbc74b08b
57 changed files with 242 additions and 209 deletions

View file

@ -5,8 +5,8 @@ use rustc::{declare_lint_pass, declare_tool_lint};
use syntax_pos::Span;
use crate::consts::{constant, Constant};
use crate::utils::{in_macro_or_desugar, is_direct_expn_of, span_help_and_lint};
use crate::utils::sym;
use crate::utils::{in_macro_or_desugar, is_direct_expn_of, span_help_and_lint};
declare_clippy_lint! {
/// **What it does:** Checks for `assert!(true)` and `assert!(false)` calls.