mdsf/tools/
v_fmt.rs

1//!
2//! THIS FILE IS GENERATED USING CODE - DO NOT EDIT MANUALLY
3//!
4
5use crate::runners::CommandType;
6
7#[inline]
8pub fn set_args(
9    mut cmd: std::process::Command,
10    file_path: &std::path::Path,
11) -> std::process::Command {
12    cmd.arg("fmt");
13    cmd.arg("-w");
14    cmd.arg(file_path);
15    cmd
16}
17
18pub const COMMANDS: [CommandType; 1] = [CommandType::Direct("v")];
19
20pub const IS_STDIN: bool = false;