forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clippy.toml
26 lines (26 loc) · 905 Bytes
/
clippy.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
disallowed-types = [
"std::sync::atomic::AtomicI8",
"std::sync::atomic::AtomicI16",
"std::sync::atomic::AtomicI32",
"std::sync::atomic::AtomicI64",
"std::sync::atomic::AtomicU8",
"std::sync::atomic::AtomicU16",
"std::sync::atomic::AtomicU32",
"std::sync::atomic::AtomicU64",
"std::sync::atomic::AtomicBool",
"std::sync::atomic::AtomicIsize",
"std::sync::atomic::AtomicPtr",
"std::sync::atomic::AtomicUsize",
"core::sync::atomic::AtomicI8",
"core::sync::atomic::AtomicI16",
"core::sync::atomic::AtomicI32",
"core::sync::atomic::AtomicI64",
"core::sync::atomic::AtomicU8",
"core::sync::atomic::AtomicU16",
"core::sync::atomic::AtomicU32",
"core::sync::atomic::AtomicU64",
"core::sync::atomic::AtomicBool",
"core::sync::atomic::AtomicIsize",
"core::sync::atomic::AtomicPtr",
"core::sync::atomic::AtomicUsize",
]