From 0b5c233734957609524300bf874cd68e37d05a26 Mon Sep 17 00:00:00 2001 From: daimond113 Date: Sun, 2 Feb 2025 15:25:11 +0100 Subject: [PATCH] style: remove comma from ,) expressions --- registry/src/endpoints/deprecate_version.rs | 2 +- src/cli/commands/publish.rs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/registry/src/endpoints/deprecate_version.rs b/registry/src/endpoints/deprecate_version.rs index 64b6e71..9b32080 100644 --- a/registry/src/endpoints/deprecate_version.rs +++ b/registry/src/endpoints/deprecate_version.rs @@ -63,7 +63,7 @@ pub async fn deprecate_package_version( &source, name.scope().to_string(), HashMap::from([(name.name().to_string(), file_string.into_bytes())]), - format!("{}deprecate {name}", if deprecated { "" } else { "un" },), + format!("{}deprecate {name}", if deprecated { "" } else { "un" }), ) .await?; diff --git a/src/cli/commands/publish.rs b/src/cli/commands/publish.rs index b2f1ffc..2d1cb4e 100644 --- a/src/cli/commands/publish.rs +++ b/src/cli/commands/publish.rs @@ -218,7 +218,7 @@ impl PublishCommand { .context("failed to get included files")?; if paths.insert(PathBuf::from(MANIFEST_FILE_NAME)) { - println!("{WARN_PREFIX}: {MANIFEST_FILE_NAME} was not included, adding it",); + println!("{WARN_PREFIX}: {MANIFEST_FILE_NAME} was not included, adding it"); } if paths.iter().any(|p| p.starts_with(".git")) { @@ -231,11 +231,11 @@ impl PublishCommand { "readme" | "readme.md" | "readme.txt" ) }) { - println!("{WARN_PREFIX}: no README file included, consider adding one",); + println!("{WARN_PREFIX}: no README file included, consider adding one"); } if !paths.iter().any(|p| p.starts_with("docs")) { - println!("{WARN_PREFIX}: docs directory not included, consider adding one",); + println!("{WARN_PREFIX}: docs directory not included, consider adding one"); } for path in &paths { @@ -315,14 +315,14 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p .unwrap() .to_path_buf(), ) { - println!("{WARN_PREFIX}: {name} was not included, adding {relative_export_path}",); + println!("{WARN_PREFIX}: {name} was not included, adding {relative_export_path}"); } if roblox_target .as_mut() .is_some_and(|build_files| build_files.insert(first_part.to_string())) { - println!("{WARN_PREFIX}: {name} was not in build files, adding {first_part}",); + println!("{WARN_PREFIX}: {name} was not in build files, adding {first_part}"); } } @@ -383,7 +383,7 @@ info: otherwise, the file was deemed unnecessary, if you don't understand why, p .unwrap() .to_path_buf(), ) { - println!("{WARN_PREFIX}: script {name} was not included, adding {path}",); + println!("{WARN_PREFIX}: script {name} was not included, adding {path}"); } } }