From 07135cc849b7aeb9d12164433b3e1275abe385bf Mon Sep 17 00:00:00 2001 From: strawberry Date: Fri, 29 Mar 2024 16:24:46 -0400 Subject: [PATCH] add two pedantic clippy lints Signed-off-by: strawberry --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c98401a7..d758bbfe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -515,6 +515,8 @@ too_many_lines = "warn" let_underscore_untyped = "warn" single_match = "warn" single_match_else = "warn" +explicit_deref_methods = "warn" +explicit_iter_loop = "warn" # some sadness missing_errors_doc = "allow"