summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/toml_disallowed_types/clippy.toml
blob: 6cb9e2ef95467be59c0ba74c9dc8d25de2411c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
disallowed-types = [
    "std::collections::HashMap",
    "std::sync::atomic::AtomicU32",
    "syn::TypePath",
    "proc_macro2::Ident",
    "std::thread::Thread",
    "std::time::Instant",
    "std::io::Read",
    "std::primitive::usize",
    "bool",
    # can give path and reason with an inline table
    { path = "std::net::Ipv4Addr", reason = "no IPv4 allowed" },
    # can use an inline table but omit reason
    { path = "std::net::TcpListener" },
]