Fix a bunch of other low-hanging style lints (#36498)

- **Fix a bunch of low hanging style lints like unnecessary-return**
- **Fix single worktree violation**
- **And the rest**

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-08-19 21:26:17 +02:00 committed by GitHub
parent df9c2aefb1
commit 05fc0c432c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
239 changed files with 854 additions and 1015 deletions

View file

@ -1215,11 +1215,11 @@ mod tests {
// Verify iterators advanced correctly
assert!(
!a_iter.next().map_or(false, |c| c.is_ascii_digit()),
!a_iter.next().is_some_and(|c| c.is_ascii_digit()),
"Iterator a should have consumed all digits"
);
assert!(
!b_iter.next().map_or(false, |c| c.is_ascii_digit()),
!b_iter.next().is_some_and(|c| c.is_ascii_digit()),
"Iterator b should have consumed all digits"
);

View file

@ -7,14 +7,12 @@ pub fn format_file_size(size: u64, use_decimal: bool) -> String {
} else {
format!("{:.1}MB", size as f64 / (1000.0 * 1000.0))
}
} else if size < 1024 {
format!("{size}B")
} else if size < 1024 * 1024 {
format!("{:.1}KiB", size as f64 / 1024.0)
} else {
if size < 1024 {
format!("{size}B")
} else if size < 1024 * 1024 {
format!("{:.1}KiB", size as f64 / 1024.0)
} else {
format!("{:.1}MiB", size as f64 / (1024.0 * 1024.0))
}
format!("{:.1}MiB", size as f64 / (1024.0 * 1024.0))
}
}

View file

@ -301,7 +301,7 @@ pub fn get_shell_safe_zed_path() -> anyhow::Result<String> {
let zed_path_escaped =
shlex::try_quote(&zed_path).context("Failed to shell-escape Zed executable path.")?;
return Ok(zed_path_escaped.to_string());
Ok(zed_path_escaped.to_string())
}
#[cfg(unix)]
@ -825,7 +825,7 @@ mod rng {
pub fn new(rng: T) -> Self {
Self {
rng,
simple_text: std::env::var("SIMPLE_TEXT").map_or(false, |v| !v.is_empty()),
simple_text: std::env::var("SIMPLE_TEXT").is_ok_and(|v| !v.is_empty()),
}
}