about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMichael Wright <mikerite@lavabit.com>2019-11-08 07:15:16 +0200
committerMichael Wright <mikerite@lavabit.com>2019-11-08 07:15:16 +0200
commit9c48a2c39aee14abdfd3afd739e8ca31b7020c63 (patch)
tree80dd2374ccdc805baf96a9731be381c6c0f91895 /src
parente3c1aea1578f644d22c909e4c91792919a3ed053 (diff)
parent4192dbedcbcaed7f9329e1a45085ce4ff4c2170b (diff)
downloadrust-9c48a2c39aee14abdfd3afd739e8ca31b7020c63.tar.gz
rust-9c48a2c39aee14abdfd3afd739e8ca31b7020c63.zip
Merge branch 'master' into fix-4727
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index a053cf8bef0..5c92d69a499 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -491,6 +491,13 @@ pub const ALL_LINTS: [Lint; 332] = [
         module: "excessive_precision",
     },
     Lint {
+        name: "exit",
+        group: "restriction",
+        desc: "`std::process::exit` is called, terminating the program",
+        deprecation: None,
+        module: "exit",
+    },
+    Lint {
         name: "expect_fun_call",
         group: "perf",
         desc: "using any `expect` method with a function call",
@@ -813,13 +820,6 @@ pub const ALL_LINTS: [Lint; 332] = [
         module: "integer_division",
     },
     Lint {
-        name: "into_iter_on_array",
-        group: "correctness",
-        desc: "using `.into_iter()` on an array",
-        deprecation: None,
-        module: "methods",
-    },
-    Lint {
         name: "into_iter_on_ref",
         group: "style",
         desc: "using `.into_iter()` on a reference",