We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
if-then-else
needless_bool
The if-then-else lint is breaking very easily.
if x { // some comment true } else { true }
The if-then-else lint is not triggered if the block contains comments.
I tested it in clippy repository directly.
No response