about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2020-09-10 17:47:07 +0200
committerflip1995 <hello@philkrones.com>2020-09-10 17:47:07 +0200
commita12828a80a62fbf2ee3e1ffc3b8169a8dc3c2b80 (patch)
treed192e12fbb71a302948af3e95eecdcde74213367 /src
parent961f18317dcb427277ac89a89936781fdef31a17 (diff)
downloadrust-a12828a80a62fbf2ee3e1ffc3b8169a8dc3c2b80.tar.gz
rust-a12828a80a62fbf2ee3e1ffc3b8169a8dc3c2b80.zip
Merge commit '5034d47f721ff4c3a3ff2aca9ef2ef3e1d067f9f' into clippyup
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 687fac7baa8..6697835e950 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -53,6 +53,13 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
         module: "assign_ops",
     },
     Lint {
+        name: "async_yields_async",
+        group: "correctness",
+        desc: "async blocks that return a type that can be awaited",
+        deprecation: None,
+        module: "async_yields_async",
+    },
+    Lint {
         name: "await_holding_lock",
         group: "pedantic",
         desc: "Inside an async function, holding a MutexGuard while calling await",
@@ -291,6 +298,13 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
         module: "copy_iterator",
     },
     Lint {
+        name: "create_dir",
+        group: "restriction",
+        desc: "calling `std::fs::create_dir` instead of `std::fs::create_dir_all`",
+        deprecation: None,
+        module: "create_dir",
+    },
+    Lint {
         name: "crosspointer_transmute",
         group: "complexity",
         desc: "transmutes that have to or from types that are a pointer to the other",