rust/tests/ui-toml/toml_disallowed_methods/clippy.toml

12 lines
392 B
TOML
Raw Normal View History

disallowed-methods = [
# just a string is shorthand for path only
"std::iter::Iterator::sum",
"f32::clamp",
"slice::sort_unstable",
2022-10-05 08:44:01 -05:00
"futures::stream::select_all",
# can give path and reason with an inline table
{ path = "regex::Regex::is_match", reason = "no matching allowed" },
# can use an inline table but omit reason
{ path = "regex::Regex::new" },
]