summaryrefslogtreecommitdiffstats
path: root/clippy.toml
blob: 26551a251b6ba479d55bf7a7b1bcf9a317130302 (plain)
1
2
3
4
5
6
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"
]