198 |
#[traced_test]
|
199 |
#[allow(clippy::semicolon_if_nothing_returned)] // False positive
|
200 |
async fn async_test_with_log() {
|
8 |
#[allow(clippy::default_trait_access)]
|
9 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
10 |
#[allow(clippy::unwrap_used)]
|
10 |
#[tokio::test]
|
11 |
#[allow(clippy::semicolon_if_nothing_returned)] // false positive from tokio::test
|
12 |
async fn offscreen_render_test() {
|
311 |
#[allow(clippy::needless_return)] // for readability
|
312 |
#[allow(clippy::semicolon_if_nothing_returned)] // I actually want to returns a never in the future
|
313 |
pub fn run_pool_parallel_with_initializations_mutable<Key, Data, CommonData, InitData, F, FInit>(
|
529 |
#[allow(clippy::needless_return)] // for readability
|
530 |
#[allow(clippy::semicolon_if_nothing_returned)] // I actually want to return a never in the future
|
531 |
pub fn run_pool_parallel_vec_with_initializations_mutable<
|
673 |
#[cfg(test)]
|
674 |
#[allow(clippy::semicolon_if_nothing_returned, clippy::future_not_send)]
|
675 |
mod tests {
|
368 |
#[should_panic(expected = "should run: suy")]
|
369 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
370 |
async fn simple_syu() {
|
381 |
#[should_panic(expected = "should run: suy")]
|
382 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
383 |
async fn long_syu() {
|
399 |
#[should_panic(expected = r#"should run: sw ["curl", "wget"]"#)]
|
400 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
401 |
async fn simple_sw() {
|
412 |
#[should_panic(expected = r#"should run: s ["docker"]"#)]
|
413 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
414 |
async fn other_flags() {
|
429 |
#[should_panic(expected = r#"should run: s ["docker", "--proxy=localhost:1234"]"#)]
|
430 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
431 |
async fn extra_flags() {
|
61 |
#[allow(unused_qualifications)]
|
62 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
63 |
#[allow(clippy::use_self)]
|
18 |
#[allow(unused_qualifications)]
|
19 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
20 |
#[allow(clippy::use_self)]
|
14 |
#[allow(unused_qualifications)]
|
15 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
16 |
#[allow(clippy::use_self)]
|
112 |
#[allow(unused_qualifications)]
|
113 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
114 |
#[allow(clippy::use_self)]
|
21 |
#[allow(unused_qualifications)]
|
22 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
23 |
#[allow(clippy::use_self)]
|
14 |
#[allow(unused_qualifications)]
|
15 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
16 |
#[allow(clippy::use_self)]
|
79 |
#[allow(unused_qualifications)]
|
80 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
81 |
#[allow(clippy::use_self)]
|
41 |
#[allow(unused_qualifications)]
|
42 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
43 |
#[allow(clippy::use_self)]
|
18 |
#[allow(unused_qualifications)]
|
19 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
20 |
#[allow(clippy::use_self)]
|
36 |
#[allow(unused_qualifications)]
|
37 |
#[allow(clippy::semicolon_if_nothing_returned)]
|
38 |
#[allow(clippy::use_self)]
|
320 |
fn test_scale_compact_derive() {
|
321 |
#[allow(clippy::semicolon_if_nothing_returned)] // False positive from macro expansion
|
322 |
#[derive(Debug, PartialEq, Encode, Decode)]
|
11 |
clippy::doc_markdown,
|
12 |
clippy::semicolon_if_nothing_returned,
|
13 |
clippy::missing_safety_doc,
|
203 |
#[allow(clippy::semicolon_if_nothing_returned)] // We are returning?
|
204 |
fn sub(self, other: u8) -> Self {
|
192 |
#[allow(clippy::semicolon_if_nothing_returned)] // We are returning?
|
193 |
fn sub(self, other: u8) -> Self {
|
34 |
clippy::match_same_arms,
|
35 |
clippy::semicolon_if_nothing_returned,
|
36 |
clippy::explicit_iter_loop,
|
5 |
clippy::match_same_arms,
|
6 |
clippy::semicolon_if_nothing_returned,
|
7 |
clippy::explicit_iter_loop,
|
23 |
#![warn(clippy::cargo, clippy::restriction, missing_docs, warnings)]
|
24 |
#![allow(clippy::implicit_return, clippy::semicolon_if_nothing_returned)]
|
25 |
//! `bool_ext` is a crate which defines and implements a complete set of Boolean functional
|
2 |
#![warn(clippy::cargo)]
|
3 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
4 |
#![allow(clippy::let_underscore_drop)]
|
81 |
clippy::redundant_else,
|
82 |
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
|
83 |
clippy::similar_names,
|
44 |
clippy::range_plus_one,
|
45 |
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7768
|
46 |
clippy::shadow_unrelated,
|
7 |
#![allow(clippy::doc_markdown)]
|
8 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
9 |
#![allow(clippy::single_char_pattern)]
|
107 |
clippy::needless_doctest_main,
|
108 |
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
|
109 |
clippy::unused_self,
|
169 |
#![warn(clippy::pedantic, missing_docs)]
|
170 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
171 |
#![no_std]
|
3 |
#![warn(clippy::pedantic)]
|
4 |
#![allow(clippy::semicolon_if_nothing_returned, clippy::too_many_lines)]
|
1 |
#![warn(rust_2018_idioms, single_use_lifetimes)]
|
2 |
#![allow(clippy::semicolon_if_nothing_returned)] // broken
|
3 |
#![feature(generators, proc_macro_hygiene, stmt_expr_attributes)]
|
2 |
#![allow(clippy::unused_async)]
|
3 |
#![allow(clippy::needless_lifetimes, clippy::semicolon_if_nothing_returned)] // broken
|
4 |
#![feature(generators, proc_macro_hygiene, stmt_expr_attributes)]
|
2 |
#![allow(clippy::try_err, clippy::unused_async)]
|
3 |
#![allow(clippy::semicolon_if_nothing_returned)] // broken
|
4 |
#![feature(generators, proc_macro_hygiene, stmt_expr_attributes)]
|
112 |
clippy::must_use_candidate,
|
113 |
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
|
114 |
)]
|
17 |
// Triggered by Tokio macros
|
18 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
69 |
#![warn(clippy::pedantic, missing_docs)]
|
70 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
126 |
clippy::match_wildcard_for_single_variants,
|
127 |
clippy::semicolon_if_nothing_returned,
|
128 |
clippy::new_without_default,
|
49 |
#![warn(clippy::cargo)]
|
50 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
51 |
// #![allow(clippy::missing_panics_doc)]
|
48 |
clippy::option_if_let_else,
|
49 |
clippy::semicolon_if_nothing_returned,
|
50 |
clippy::shadow_unrelated,
|
177 |
clippy::ptr_as_ptr, // There are just too many of these
|
178 |
clippy::semicolon_if_nothing_returned, // Too many of these
|
179 |
clippy::fallible_impl_from, // A few of these, but lazy
|
107 |
clippy::needless_doctest_main,
|
108 |
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
|
109 |
clippy::unused_self,
|
45 |
#![warn(clippy::pedantic, missing_docs)]
|
46 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
36 |
clippy::module_name_repetitions, // Types pub exported in different modeule.
|
37 |
clippy::semicolon_if_nothing_returned, // Conceptually returning "result" of inner operation
|
38 |
clippy::similar_names, // Sometimes prefer names that are similar. Consider removing.
|
2 |
#![warn(clippy::cargo)]
|
3 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
4 |
#![allow(clippy::missing_panics_doc)]
|
1 |
#![allow(clippy::semicolon_if_nothing_returned)] // https://github.com/rust-lang/rust-clippy/issues/7324
|
81 |
clippy::redundant_else,
|
82 |
clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
|
83 |
clippy::similar_names,
|
109 |
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/7768
|
110 |
semicolon_if_nothing_returned,
|
111 |
// not available in our oldest supported compiler
|
12 |
#![allow(clippy::explicit_iter_loop)] // can make code more readable
|
13 |
#![allow(clippy::semicolon_if_nothing_returned)] // see https://github.com/rust-lang/rust-clippy/issues/7768
|
14 |
#![deny(missing_docs)]
|
4 |
#![allow(
|
5 |
clippy::semicolon_if_nothing_returned,
|
6 |
clippy::trivially_copy_pass_by_ref
|
15 |
#![warn(clippy::pedantic)]
|
16 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
17 |
#![no_std]
|
52 |
#![warn(clippy::pedantic, missing_docs)]
|
53 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
54 |
#![no_std]
|
2 |
#![warn(clippy::pedantic)]
|
3 |
#![allow(clippy::semicolon_if_nothing_returned)]
|
4 |
#![deny(missing_docs)]
|
15 |
clippy::must_use_candidate,
|
16 |
clippy::semicolon_if_nothing_returned,
|
17 |
clippy::used_underscore_binding
|