mdsf/tools/
csslint.rs

1///
2/// THIS FILE IS GENERATED USING CODE - DO NOT EDIT MANUALLY
3///
4use crate::runners::CommandType;
5
6#[inline]
7pub fn set_args(
8    mut cmd: std::process::Command,
9    file_path: &std::path::Path,
10) -> std::process::Command {
11    cmd.arg("--quiet");
12    cmd.arg(file_path);
13    cmd
14}
15
16pub const COMMANDS: [CommandType; 3] = [
17    CommandType::NodeModules("csslint"),
18    CommandType::Direct("csslint"),
19    CommandType::Npm("csslint"),
20];
21
22#[cfg(test)]
23mod test_csslint {}