]> git.lizzy.rs Git - rust.git/blob - tests/ui-toml/toml_disallowed_types/clippy.toml
Auto merge of #90891 - nbdd0121:format, r=Mark-Simulacrum
[rust.git] / tests / ui-toml / toml_disallowed_types / clippy.toml
1 disallowed-types = [
2     "std::collections::HashMap",
3     "std::sync::atomic::AtomicU32",
4     "syn::TypePath",
5     "proc_macro2::Ident",
6     "std::thread::Thread",
7     "std::time::Instant",
8     "std::io::Read",
9     "std::primitive::usize",
10     "bool",
11     # can give path and reason with an inline table
12     { path = "std::net::Ipv4Addr", reason = "no IPv4 allowed" },
13     # can use an inline table but omit reason
14     { path = "std::net::TcpListener" },
15 ]