We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ba9a3 commit 0043453Copy full SHA for 0043453
crates/core_arch/src/lib.rs
@@ -38,17 +38,21 @@
38
#![cfg_attr(test, feature(test, abi_vectorcall))]
39
#![deny(clippy::missing_inline_in_public_items)]
40
#![allow(
41
+ clippy::identity_op,
42
clippy::inline_always,
43
clippy::too_many_arguments,
44
clippy::cast_sign_loss,
45
clippy::cast_lossless,
46
clippy::cast_possible_wrap,
47
clippy::cast_possible_truncation,
48
clippy::cast_precision_loss,
- clippy::shadow_reuse,
49
clippy::cognitive_complexity,
50
+ clippy::many_single_char_names,
51
+ clippy::missing_safety_doc,
52
+ clippy::shadow_reuse,
53
clippy::similar_names,
- clippy::many_single_char_names
54
+ clippy::unusual_byte_groupings,
55
+ clippy::wrong_self_convention
56
)]
57
#![cfg_attr(test, allow(unused_imports))]
58
#![no_std]
0 commit comments