mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-11 07:40:57 +00:00
0965667807
Adds Rust-based standardized markdown formatting and a CI step to catch unformatted files.
7 lines
247 B
TOML
7 lines
247 B
TOML
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",
|
|
]
|