mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-22 05:24:48 +00:00
6dcec6ae86
This splits up clippy::collapsible_if into collapsible_if for if x { if y { } } => if x && y { } and collapsible_else_if for if x { } else { if y { } } => if x { } else if y { } so that we can lint for only the latter but not the first if we desire. changelog: collapsible_if: split up linting for if x {} else { if y {} } into collapsible_else_if lint |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |