208 |
// Capacity was already checked
|
209 |
clippy::let_underscore_must_use
|
210 |
)]
|
205 |
// Capacity was already checked
|
206 |
clippy::let_underscore_must_use
|
207 |
)]
|
98 |
// Future abortion should be expected, and not handled
|
99 |
#[allow(clippy::let_underscore_must_use)]
|
100 |
let _ = rt.block_on(abortable);
|
30 |
#![allow(clippy::integer_division)]
|
31 |
#![allow(clippy::let_underscore_must_use)]
|
32 |
#![allow(clippy::match_bool)] // prettier
|
32 |
#![allow(clippy::integer_division)]
|
33 |
#![allow(clippy::let_underscore_must_use)]
|
34 |
#![allow(clippy::match_bool)] // prettier
|
71 |
#![allow(clippy::integer_division)]
|
72 |
#![allow(clippy::let_underscore_must_use)]
|
73 |
#![allow(clippy::match_bool)] // prettier
|
38 |
clippy::multiple_inherent_impl, // We separate `impl`s where possible based on their purpose
|
39 |
clippy::let_underscore_must_use, // We'll only use `let _ = ...` if we really want to ignore the result
|
40 |
clippy::module_name_repetitions, // Sometimes we'll have modules such as `Error` and `XYZError` inside of it.
|