This commit is contained in:
flip1995 2020-03-04 00:54:27 +01:00
parent 9c93f04c90
commit a640696cdf
No known key found for this signature in database
GPG key ID: 2CEFCDB27ED0BE79
4 changed files with 4 additions and 7 deletions

View file

@ -1,5 +1,5 @@
#![feature(stmt_expr_attributes)]
#![allow(redundant_semicolon, clippy::no_effect)]
#![allow(redundant_semicolons, clippy::no_effect)]
#[rustfmt::skip]
fn main() {

View file

@ -1,10 +1,7 @@
if_chain! {
if let ExprKind::Block(ref block) = expr.kind;
if let Some(trailing_expr) = &block.expr;
if block.stmts.len() == 1;
if let StmtKind::Semi(ref e, _) = block.stmts[0].kind
if let ExprKind::Tup(ref elements) = e.kind;
if elements.len() == 0;
if block.stmts.len() == 0;
then {
// report your lint here
}

View file

@ -5,7 +5,7 @@
clippy::blacklisted_name,
clippy::no_effect,
clippy::redundant_clone,
redundant_semicolon,
redundant_semicolons,
unused_assignments
)]

View file

@ -5,7 +5,7 @@
clippy::blacklisted_name,
clippy::no_effect,
clippy::redundant_clone,
redundant_semicolon,
redundant_semicolons,
unused_assignments
)]