mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-11 04:38:43 +00:00
9b38fb7b71
To stay consistent with the sister lint disallowed_type, also rename the disallowed_method lint to disallowed_methods.
8 lines
311 B
TOML
8 lines
311 B
TOML
disallowed-methods = [
|
|
# just a string is shorthand for path only
|
|
"std::iter::Iterator::sum",
|
|
# 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" },
|
|
]
|