mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-09 12:01:58 +00:00
Enable clippy::iter_overeager_cloned
(#8839)
This PR enables the [`clippy::iter_overeager_cloned`](https://rust-lang.github.io/rust-clippy/master/index.html#/iter_overeager_cloned) rule and fixes the outstanding violations. Release Notes: - N/A
This commit is contained in:
parent
9c6a0d98ed
commit
9ea50ed649
2 changed files with 6 additions and 4 deletions
|
@ -614,9 +614,12 @@ impl SyntaxSnapshot {
|
||||||
Some(old_tree.clone()),
|
Some(old_tree.clone()),
|
||||||
);
|
);
|
||||||
changed_ranges = join_ranges(
|
changed_ranges = join_ranges(
|
||||||
invalidated_ranges.iter().cloned().filter(|range| {
|
invalidated_ranges
|
||||||
range.start <= step_end_byte && range.end >= step_start_byte
|
.iter()
|
||||||
}),
|
.filter(|&range| {
|
||||||
|
range.start <= step_end_byte && range.end >= step_start_byte
|
||||||
|
})
|
||||||
|
.cloned(),
|
||||||
old_tree.changed_ranges(&tree).map(|r| {
|
old_tree.changed_ranges(&tree).map(|r| {
|
||||||
step_start_byte + r.start_byte..step_start_byte + r.end_byte
|
step_start_byte + r.start_byte..step_start_byte + r.end_byte
|
||||||
}),
|
}),
|
||||||
|
|
|
@ -88,7 +88,6 @@ fn run_clippy(args: ClippyArgs) -> Result<()> {
|
||||||
"clippy::derive_ord_xor_partial_ord",
|
"clippy::derive_ord_xor_partial_ord",
|
||||||
"clippy::eq_op",
|
"clippy::eq_op",
|
||||||
"clippy::implied_bounds_in_impls",
|
"clippy::implied_bounds_in_impls",
|
||||||
"clippy::iter_overeager_cloned",
|
|
||||||
"clippy::let_underscore_future",
|
"clippy::let_underscore_future",
|
||||||
"clippy::map_entry",
|
"clippy::map_entry",
|
||||||
"clippy::never_loop",
|
"clippy::never_loop",
|
||||||
|
|
Loading…
Reference in a new issue