chore: Fix several style lints (#17488)

It's not comprehensive enough to start linting on `style` group, but
hey, it's a start.

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-09-06 11:58:39 +02:00 committed by GitHub
parent 93249fc82b
commit e6c1c51b37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
361 changed files with 3530 additions and 3587 deletions

View file

@ -95,7 +95,7 @@ struct MacOsUnmounter {
impl Drop for MacOsUnmounter {
fn drop(&mut self) {
let unmount_output = std::process::Command::new("hdiutil")
.args(&["detach", "-force"])
.args(["detach", "-force"])
.arg(&self.mount_path)
.output();
@ -211,7 +211,7 @@ pub fn check(_: &Check, cx: &mut WindowContext) {
return;
}
if let Some(message) = env::var("ZED_UPDATE_EXPLANATION").ok() {
if let Ok(message) = env::var("ZED_UPDATE_EXPLANATION") {
drop(cx.prompt(
gpui::PromptLevel::Info,
"Zed was installed via a package manager.",
@ -254,7 +254,7 @@ pub fn view_release_notes(_: &ViewReleaseNotes, cx: &mut AppContext) -> Option<(
let url = &auto_updater
.http_client
.build_url(&format!("/releases/{release_channel}/{current_version}"));
cx.open_url(&url);
cx.open_url(url);
}
None
@ -722,7 +722,7 @@ async fn install_release_linux(
}
let output = Command::new("rsync")
.args(&["-av", "--delete"])
.args(["-av", "--delete"])
.arg(&from)
.arg(&to)
.output()
@ -754,10 +754,10 @@ async fn install_release_macos(
mounted_app_path.push("/");
let output = Command::new("hdiutil")
.args(&["attach", "-nobrowse"])
.args(["attach", "-nobrowse"])
.arg(&downloaded_dmg)
.arg("-mountroot")
.arg(&temp_dir.path())
.arg(temp_dir.path())
.output()
.await?;
@ -773,7 +773,7 @@ async fn install_release_macos(
};
let output = Command::new("rsync")
.args(&["-av", "--delete"])
.args(["-av", "--delete"])
.arg(&mounted_app_path)
.arg(&running_app_path)
.output()