mdsf/tools/
cljfmt_fix.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
///
/// 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 {}