Skip to content

Commit

Permalink
chg: move disable-abbreviations options to Output
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Nov 15, 2024
1 parent 3b75add commit 2c4961c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/detections/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ pub struct SearchOption {
pub time_format_options: TimeFormatOptions,

/// Disable abbreviations
#[arg(help_heading = Some("General Options"), short='b', long = "disable-abbreviations", display_order = 300)]
#[arg(help_heading = Some("Output"), short='b', long = "disable-abbreviations", display_order = 60)]
pub disable_abbreviations: bool,
}

Expand Down Expand Up @@ -1319,7 +1319,7 @@ pub struct EidMetricsOption {
pub clobber: bool,

/// Disable abbreviations
#[arg(help_heading = Some("General Options"), short='b', long = "disable-abbreviations", display_order = 300)]
#[arg(help_heading = Some("Output"), short='b', long = "disable-abbreviations", display_order = 60)]
pub disable_abbreviations: bool,
}

Expand Down Expand Up @@ -1691,7 +1691,7 @@ pub struct CsvOutputOption {
pub output: Option<PathBuf>,

/// Disable abbreviations
#[arg(help_heading = Some("General Options"), short='b', long = "disable-abbreviations", display_order = 300)]
#[arg(help_heading = Some("Output"), short='b', long = "disable-abbreviations", display_order = 60)]
pub disable_abbreviations: bool,
}

Expand Down Expand Up @@ -1719,7 +1719,7 @@ pub struct JSONOutputOption {
pub geo_ip: Option<PathBuf>,

/// Disable abbreviations
#[arg(help_heading = Some("General Options"), short='b', long = "disable-abbreviations", display_order = 300)]
#[arg(help_heading = Some("Output"), short='b', long = "disable-abbreviations", display_order = 60)]
pub disable_abbreviations: bool,
}

Expand Down Expand Up @@ -1805,7 +1805,7 @@ pub struct LogMetricsOption {
pub clobber: bool,

/// Disable abbreviations
#[arg(help_heading = Some("General Options"), short='b', long = "disable-abbreviations", display_order = 300)]
#[arg(help_heading = Some("Output"), short='b', long = "disable-abbreviations", display_order = 60)]
pub disable_abbreviations: bool,
}

Expand Down

0 comments on commit 2c4961c

Please sign in to comment.