diff options
author | Nadrieril Feneanar | 2020-03-17 23:36:12 +0000 |
---|---|---|
committer | GitHub | 2020-03-17 23:36:12 +0000 |
commit | 6c18f2b698874d125532625e2bedaa6621962074 (patch) | |
tree | dc8eec542bdbbb39bc24b8b43e1abf20490e6702 /dhall/src/lib.rs | |
parent | 681dad33cf27b2be4f4b3cefd83998af1d7eefb2 (diff) | |
parent | 715a941333887c4a29c2c49102bf1455d88a5417 (diff) |
Merge pull request #144 from Nadrieril/clippy
Clippy
Diffstat (limited to '')
-rw-r--r-- | dhall/src/lib.rs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index d68ad6b..d7d7f05 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,12 +1,10 @@ #![doc(html_root_url = "https://docs.rs/dhall/0.3.0")] #![feature(never_type)] #![allow( - clippy::type_complexity, - clippy::infallible_destructuring_match, - clippy::many_single_char_names, - clippy::match_wild_err_arm, - clippy::redundant_closure, - clippy::ptr_arg + clippy::int_plus_one, // Comes from pest_consume macro + clippy::module_inception, + clippy::needless_lifetimes, + clippy::useless_format )] mod tests; |