|
35 | 35 | external_doc |
36 | 36 | )] |
37 | 37 | #![cfg_attr(test, feature(test, abi_vectorcall, untagged_unions))] |
38 | | -#![cfg_attr( |
39 | | - feature = "cargo-clippy", |
40 | | - deny(clippy::missing_inline_in_public_items,) |
41 | | -)] |
42 | | -#![cfg_attr( |
43 | | - feature = "cargo-clippy", |
44 | | - allow( |
45 | | - clippy::inline_always, |
46 | | - clippy::too_many_arguments, |
47 | | - clippy::cast_sign_loss, |
48 | | - clippy::cast_lossless, |
49 | | - clippy::cast_possible_wrap, |
50 | | - clippy::cast_possible_truncation, |
51 | | - clippy::cast_precision_loss, |
52 | | - clippy::shadow_reuse, |
53 | | - clippy::cyclomatic_complexity, |
54 | | - clippy::similar_names, |
55 | | - clippy::many_single_char_names |
56 | | - ) |
| 38 | +#![deny(clippy::missing_inline_in_public_items)] |
| 39 | +#![allow( |
| 40 | + clippy::inline_always, |
| 41 | + clippy::too_many_arguments, |
| 42 | + clippy::cast_sign_loss, |
| 43 | + clippy::cast_lossless, |
| 44 | + clippy::cast_possible_wrap, |
| 45 | + clippy::cast_possible_truncation, |
| 46 | + clippy::cast_precision_loss, |
| 47 | + clippy::shadow_reuse, |
| 48 | + clippy::cyclomatic_complexity, |
| 49 | + clippy::cognitive_complexity, |
| 50 | + clippy::similar_names, |
| 51 | + clippy::many_single_char_names |
57 | 52 | )] |
58 | 53 | #![cfg_attr(test, allow(unused_imports))] |
59 | 54 | #![no_std] |
|
0 commit comments