rust: Disable Byte Grouping Linter
Disable the byte grouping clippy lint by default. In some cases it makes sense to group bytes in a protocol-specific fashion, so let's not error on this lint. Bug: 181171365 Test: Clippy allows this lint. Change-Id: I2705dc7fa901b997bcb01f1256d48e85ce35065c
This commit is contained in:
parent
1251bb5775
commit
b6d0d9cec4
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ var (
|
|||
defaultClippyLints = []string{
|
||||
"-A clippy::type-complexity",
|
||||
"-A clippy::unnecessary-wraps",
|
||||
"-A clippy::unusual-byte-groupings",
|
||||
}
|
||||
|
||||
// Rust lints for vendor code.
|
||||
|
|
Loading…
Reference in a new issue