diff options
| author | Michael Wright <mikerite@lavabit.com> | 2019-11-08 07:15:16 +0200 |
|---|---|---|
| committer | Michael Wright <mikerite@lavabit.com> | 2019-11-08 07:15:16 +0200 |
| commit | 9c48a2c39aee14abdfd3afd739e8ca31b7020c63 (patch) | |
| tree | 80dd2374ccdc805baf96a9731be381c6c0f91895 /src | |
| parent | e3c1aea1578f644d22c909e4c91792919a3ed053 (diff) | |
| parent | 4192dbedcbcaed7f9329e1a45085ce4ff4c2170b (diff) | |
| download | rust-9c48a2c39aee14abdfd3afd739e8ca31b7020c63.tar.gz rust-9c48a2c39aee14abdfd3afd739e8ca31b7020c63.zip | |
Merge branch 'master' into fix-4727
Diffstat (limited to 'src')
| -rw-r--r-- | src/lintlist/mod.rs | 14 |
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", |
