summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/toml_disallowed_methods/clippy.toml
blob: c902d21123dce0dc9d8200531fe6669275776aba (plain)
1
2
3
4
5
6
7
8
9
10
disallowed-methods = [
    # just a string is shorthand for path only
    "std::iter::Iterator::sum",
    "f32::clamp",
    "slice::sort_unstable",
    # 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" },
]