diff options
author | 2021-04-01 19:40:37 +0200 | |
---|---|---|
committer | 2021-04-01 19:40:37 +0200 | |
commit | 0f36d16fee48f58d76d8b4705e9a1c44a5db94d4 (patch) | |
tree | 72695cc5b68fd18644a3e670e0982f1c7f06336a | |
parent | 32eccae1ac4c534b256abace34595fd78230877b (diff) |
Disable clippy::upper-case-acronyms
Bug: 184269635
Test: TH
Change-Id: Ib941f9d625d1b8cfc395fd926ddf301e11fb0c4a
-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 7c05e4f1d..ef6b315e9 100644 --- a/rust/config/lints.go +++ b/rust/config/lints.go @@ -54,6 +54,7 @@ var ( "-A clippy::type-complexity", "-A clippy::unnecessary-wraps", "-A clippy::unusual-byte-groupings", + "-A clippy::upper-case-acronyms", } // Rust lints for vendor code. |