about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
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",