about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJoe Frikker <jfrikker@gmail.com>2019-06-18 23:22:51 -0400
committerJoe Frikker <jfrikker@gmail.com>2019-06-22 16:37:05 -0400
commit60a80849ce20bbfc3bbef741a2be8cdc7225b96d (patch)
tree9b3b65ba228f1e7a523f571325dd762215aba839 /src
parentc5d1ecd4747d73e0c8a62b82b97cb6d5f83db45f (diff)
downloadrust-60a80849ce20bbfc3bbef741a2be8cdc7225b96d.tar.gz
rust-60a80849ce20bbfc3bbef741a2be8cdc7225b96d.zip
Adding try_err lint
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 663b6a5e709..e8abb198e78 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -6,7 +6,7 @@ pub use lint::Lint;
 pub use lint::LINT_LEVELS;
 
 // begin lint list, do not remove this comment, it’s used in `update_lints`
-pub const ALL_LINTS: [Lint; 305] = [
+pub const ALL_LINTS: [Lint; 306] = [
     Lint {
         name: "absurd_extreme_comparisons",
         group: "correctness",
@@ -1821,6 +1821,13 @@ pub const ALL_LINTS: [Lint; 305] = [
         module: "trivially_copy_pass_by_ref",
     },
     Lint {
+        name: "try_err",
+        group: "style",
+        desc: "TODO",
+        deprecation: None,
+        module: "try_err",
+    },
+    Lint {
         name: "type_complexity",
         group: "complexity",
         desc: "usage of very complex types that might be better factored into `type` definitions",