Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore struct_excessive_bools pedantic clippy lint
warning: more than 3 bools in a struct --> src/fixup.rs:6:1 | 6 | / pub(crate) struct FixupContext { 7 | | // Print expression such that it can be parsed back as a statement 8 | | // consisting of the original expression. 9 | | // ... | 88 | | parenthesize_exterior_struct_lit: bool, 89 | | } | |_^ | = help: consider using a state machine or refactoring bools into two-variant enums = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#struct_excessive_bools = note: `-W clippy::struct-excessive-bools` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::struct_excessive_bools)]`
- Loading branch information