From 77ea1d8223b57567b448fb973b7240adaab61778 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 13 Jun 2025 21:00:10 +0200 Subject: style(yt/cli): Sort the toplevel flags alphabetically --- yt/src/cli.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yt/src/cli.rs b/yt/src/cli.rs index e7ee4c2..de7a5b8 100644 --- a/yt/src/cli.rs +++ b/yt/src/cli.rs @@ -40,10 +40,6 @@ pub struct CliArgs { #[arg(long, short, action=ArgAction::SetTrue, default_value_t = false)] pub no_migrate_db: bool, - /// Increase message verbosity - #[arg(long="verbose", short = 'v', action = ArgAction::Count)] - pub verbosity: u8, - /// Display colors [defaults to true, if the config file has no value] #[arg(long, short = 'C')] pub color: Option, @@ -57,6 +53,10 @@ pub struct CliArgs { #[arg(long, short)] pub config_path: Option, + /// Increase message verbosity + #[arg(long="verbose", short = 'v', action = ArgAction::Count)] + pub verbosity: u8, + /// Silence all output #[arg(long, short = 'q')] pub quiet: bool, -- cgit 1.4.1