rust/tests
Matthias Krüger 6dcec6ae86 collapsible_if: split collapsible_else_if into its own lint so we can enable/disable it particularly
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
2021-01-04 13:34:14 +01:00
..
auxiliary Remove all copyright license headers 2019-01-08 21:46:39 +01:00
cargo Merge commit '2f6439ae6a' into clippyup 2020-10-09 12:45:29 +02:00
ui collapsible_if: split collapsible_else_if into its own lint so we can enable/disable it particularly 2021-01-04 13:34:14 +01:00
ui-cargo Merge commit '4911ab124c' into clippyup 2020-12-20 17:19:49 +01:00
ui-internal Merge commit '4911ab124c' into clippyup 2020-12-20 17:19:49 +01:00
ui-toml Merge commit '4911ab124c' into clippyup 2020-12-20 17:19:49 +01:00
compile-test.rs Merge commit 'c1664c50b2' into clippyup 2020-12-06 15:01:03 +01:00
dogfood.rs Special sync of 'e89801553d' 2020-12-23 10:57:35 +01:00
fmt.rs Merge commit '3d0b0e66af' into clippyup 2020-08-28 18:43:25 +02:00
integration.rs Merge commit '4911ab124c' into clippyup 2020-12-20 17:19:49 +01:00
missing-test-files.rs cargo fmt 2019-06-21 16:47:34 +02:00
versioncheck.rs Use rustc --version in versioncheck 2021-01-02 16:20:43 +01:00