Files
starship/clippy.toml
T

9 lines
334 B
TOML
Raw Normal View History

disallowed-methods = [
# std::process::Command::new may inadvertly run executables from the current working directory
"std::process::Command::new",
# Setting environment variables can cause issues with non-rust code
"std::env::set_var",
2022-02-24 00:32:35 +01:00
# use `dunce` to avoid UNC/verbatim paths, where possible
"std::fs::canonicalize",
]