mdsf/tools/jsona_lint.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("lint");
cmd.arg(file_path);
cmd
}
pub const COMMANDS: [CommandType; 1] = [CommandType::Direct("jsona")];
#[cfg(test)]
mod test_jsona_lint {}