about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2020-04-02 17:36:49 -0700
committerDavid Tolnay <dtolnay@gmail.com>2020-04-23 16:30:06 -0700
commitef28361293b39b63f313aa756fce1b9c74f9eb28 (patch)
treea6e61c7c34e61bd016e46c78ea07144d37211c34 /src
parent02c94352d4bbb055dce656da21d86aa1bf672562 (diff)
downloadrust-ef28361293b39b63f313aa756fce1b9c74f9eb28.tar.gz
rust-ef28361293b39b63f313aa756fce1b9c74f9eb28.zip
Downgrade match_bool to pedantic
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 2c466aa20c6..9b67bacc35d 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -1139,7 +1139,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
     },
     Lint {
         name: "match_bool",
-        group: "style",
+        group: "pedantic",
         desc: "a `match` on a boolean expression instead of an `if..else` block",
         deprecation: None,
         module: "matches",