mdsf/tools/oelint_adv.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("--fix");
13 cmd.arg("--nobackup");
14 cmd.arg("--quiet");
15 cmd.arg(file_path);
16 cmd
17}
18
19pub const COMMANDS: [CommandType; 3] = [
20 CommandType::Direct("oelint-adv"),
21 CommandType::Uv("oelint_adv", "oelint-adv"),
22 CommandType::Pipx("oelint_adv", "oelint-adv"),
23];
24
25pub const IS_STDIN: bool = false;