From 41f8157ba72cefa9ec92c241f8352914e8ab2fc1 Mon Sep 17 00:00:00 2001 From: Jeff Vander Stoep Date: Fri, 19 Feb 2021 16:51:10 +0100 Subject: [PATCH] Disable unnecessary_wraps clippy lint Bug: 180268112 Test: build Fixes: 180703142 Change-Id: I13f3de49318a6a9d2141042836a08ba7e300648f --- rust/config/lints.go | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/config/lints.go b/rust/config/lints.go index 06bb668d1..ac8165b22 100644 --- a/rust/config/lints.go +++ b/rust/config/lints.go @@ -52,6 +52,7 @@ var ( // deny. defaultClippyLints = []string{ "-A clippy::type-complexity", + "-A clippy::unnecessary-wraps", } // Rust lints for vendor code.