diff options
author | 2021-02-19 16:51:10 +0100 | |
---|---|---|
committer | 2021-02-19 17:19:39 +0100 | |
commit | 41f8157ba72cefa9ec92c241f8352914e8ab2fc1 (patch) | |
tree | 023360c5c94db65b94bfb3a5ad86bd6954f53e9a | |
parent | 71c139dced27182cf278012a274a6abf4bb65e1e (diff) |
Disable unnecessary_wraps clippy lint
Bug: 180268112
Test: build
Fixes: 180703142
Change-Id: I13f3de49318a6a9d2141042836a08ba7e300648f
-rw-r--r-- | rust/config/lints.go | 1 |
1 files changed, 1 insertions, 0 deletions
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. |