feat: Add option to override compatibility checks

This commit is contained in:
Liam 2024-08-10 19:58:59 -07:00
parent d4a3889e00
commit da2433d9d9
No known key found for this signature in database

View File

@ -33,6 +33,9 @@ struct Args {
/// Enable compatibility mode (disable icons and RGB colors) /// Enable compatibility mode (disable icons and RGB colors)
#[arg(short, long, default_value_t = false)] #[arg(short, long, default_value_t = false)]
compat: bool, compat: bool,
#[arg(long, default_value_t = false)]
#[clap(help = "Show all available options, disregarding compatibility checks (UNSAFE)")]
override_validation: bool,
} }
fn main() -> std::io::Result<()> { fn main() -> std::io::Result<()> {