mdsf/tools/cljfmt_fix.rs
///
/// THIS FILE IS GENERATED USING CODE - DO NOT EDIT MANUALLY
///
use crate::runners::CommandType;
#[inline]
pub fn set_args(
mut cmd: std::process::Command,
file_path: &std::path::Path,
) -> std::process::Command {
cmd.arg("fix");
cmd.arg(file_path);
cmd
}
pub const COMMANDS: [CommandType; 1] = [CommandType::Direct("cljfmt")];
#[cfg(test)]
mod test_cljfmt_fix {}