* Color CI output * Improve `CommandExt` * Add comments explaining `#[allow]`s * Remove useless `dead_code` annotation * Improve error messages * Print errors when running a shell errors * fixup! Remove useless `dead_code` annotation
6 lines
280 B
TOML
6 lines
280 B
TOML
disallowed-methods = [
|
|
{ path = "std::process::Command::output", reason = "Use `output_checked[_with][_utf8]`" },
|
|
{ path = "std::process::Command::spawn", reason = "Use `spawn_checked`" },
|
|
{ path = "std::process::Command::status", reason = "Use `status_checked`" },
|
|
]
|