From 1cad72881012ce354803b19190849360307af5a2 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Sun, 24 Mar 2024 12:35:22 +0100 Subject: [PATCH] chore: hide `fmt` command The `fmt` command is not ready yet. It will be shown when it is ready for prime time. --- cli/src/commands/fmt.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/src/commands/fmt.rs b/cli/src/commands/fmt.rs index 131b0cd81..2f716ca60 100644 --- a/cli/src/commands/fmt.rs +++ b/cli/src/commands/fmt.rs @@ -8,6 +8,8 @@ use yara_x_fmt::Formatter; pub fn fmt() -> Command { super::command("fmt").about("Format YARA source files") + // The `fmt` command is not ready yet. + .hide(true) .arg( arg!() .help("Path to YARA source file")