diff options
| author | Joe Frikker <jfrikker@gmail.com> | 2019-06-18 23:22:51 -0400 |
|---|---|---|
| committer | Joe Frikker <jfrikker@gmail.com> | 2019-06-22 16:37:05 -0400 |
| commit | 60a80849ce20bbfc3bbef741a2be8cdc7225b96d (patch) | |
| tree | 9b3b65ba228f1e7a523f571325dd762215aba839 /src | |
| parent | c5d1ecd4747d73e0c8a62b82b97cb6d5f83db45f (diff) | |
| download | rust-60a80849ce20bbfc3bbef741a2be8cdc7225b96d.tar.gz rust-60a80849ce20bbfc3bbef741a2be8cdc7225b96d.zip | |
Adding try_err lint
Diffstat (limited to 'src')
| -rw-r--r-- | src/lintlist/mod.rs | 9 |
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", |
