• cli-batteries 0.4.1/src/lib.rs
    198
        #[traced_test]
    199
        #[allow(clippy::semicolon_if_nothing_returned)] // False positive
    200
        async fn async_test_with_log() {
  • correspondent 0.3.1/src/nsd/windows/mod.rs
    8
    #[allow(clippy::default_trait_access)]
    9
    #[allow(clippy::semicolon_if_nothing_returned)]
    10
    #[allow(clippy::unwrap_used)]
  • kludgine-core 0.4.0/src/tests.rs
    10
    #[tokio::test]
    11
    #[allow(clippy::semicolon_if_nothing_returned)] // false positive from tokio::test
    12
    async fn offscreen_render_test() {
  • lattice-qcd-rs 0.2.1/src/thread.rs
    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<
  • nebari 0.5.4/src/transaction/log.rs
    673
    #[cfg(test)]
    674
    #[allow(clippy::semicolon_if_nothing_returned, clippy::future_not_send)]
    675
    mod tests {
  • pacaptr 0.17.1/src/dispatch/cmd.rs
    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() {
  • pin-project 1.0.12/tests/expand/default/enum.expanded.rs
    61
    #[allow(unused_qualifications)]
    62
    #[allow(clippy::semicolon_if_nothing_returned)]
    63
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/default/struct.expanded.rs
    18
    #[allow(unused_qualifications)]
    19
    #[allow(clippy::semicolon_if_nothing_returned)]
    20
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/default/tuple_struct.expanded.rs
    14
    #[allow(unused_qualifications)]
    15
    #[allow(clippy::semicolon_if_nothing_returned)]
    16
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/multifields/enum.expanded.rs
    112
    #[allow(unused_qualifications)]
    113
    #[allow(clippy::semicolon_if_nothing_returned)]
    114
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/multifields/struct.expanded.rs
    21
    #[allow(unused_qualifications)]
    22
    #[allow(clippy::semicolon_if_nothing_returned)]
    23
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/multifields/tuple_struct.expanded.rs
    14
    #[allow(unused_qualifications)]
    15
    #[allow(clippy::semicolon_if_nothing_returned)]
    16
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/naming/enum-all.expanded.rs
    79
    #[allow(unused_qualifications)]
    80
    #[allow(clippy::semicolon_if_nothing_returned)]
    81
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/naming/enum-mut.expanded.rs
    41
    #[allow(unused_qualifications)]
    42
    #[allow(clippy::semicolon_if_nothing_returned)]
    43
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/naming/enum-none.expanded.rs
    18
    #[allow(unused_qualifications)]
    19
    #[allow(clippy::semicolon_if_nothing_returned)]
    20
    #[allow(clippy::use_self)]
  • pin-project 1.0.12/tests/expand/naming/enum-own.expanded.rs
    36
    #[allow(unused_qualifications)]
    37
    #[allow(clippy::semicolon_if_nothing_returned)]
    38
    #[allow(clippy::use_self)]
  • ruint 1.7.0/src/support/scale.rs
    320
        fn test_scale_compact_derive() {
    321
            #[allow(clippy::semicolon_if_nothing_returned)] // False positive from macro expansion
    322
            #[derive(Debug, PartialEq, Encode, Decode)]
  • termusic 0.7.8/src/player/rusty_backend/mod.rs
    11
        clippy::doc_markdown,
    12
        clippy::semicolon_if_nothing_returned,
    13
        clippy::missing_safety_doc,
  • utc2k 0.5.13/src/month.rs
    203
    	#[allow(clippy::semicolon_if_nothing_returned)] // We are returning?
    204
    	fn sub(self, other: u8) -> Self {
  • utc2k 0.5.13/src/weekday.rs
    192
    	#[allow(clippy::semicolon_if_nothing_returned)] // We are returning?
    193
    	fn sub(self, other: u8) -> Self {
  • bevy_mikktspace 0.9.1/src/generated.rs
    34
        clippy::match_same_arms,
    35
        clippy::semicolon_if_nothing_returned,
    36
        clippy::explicit_iter_loop,
  • bevy_mikktspace 0.9.1/tests/regression_test.rs
    5
        clippy::match_same_arms,
    6
        clippy::semicolon_if_nothing_returned,
    7
        clippy::explicit_iter_loop,
  • bool_ext 0.5.3/src/lib.rs
    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
  • cargo-bisect-rustc 0.6.5/src/main.rs
    2
    #![warn(clippy::cargo)]
    3
    #![allow(clippy::semicolon_if_nothing_returned)]
    4
    #![allow(clippy::let_underscore_drop)]
  • cw-semver 1.0.14/src/lib.rs
    81
        clippy::redundant_else,
    82
        clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
    83
        clippy::similar_names,
  • dtoa 1.0.5/src/lib.rs
    44
        clippy::range_plus_one,
    45
        clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7768
    46
        clippy::shadow_unrelated,
  • dylint 2.1.3/src/toml.rs
    7
    #![allow(clippy::doc_markdown)]
    8
    #![allow(clippy::semicolon_if_nothing_returned)]
    9
    #![allow(clippy::single_char_pattern)]
  • erased-serde 0.3.24/src/lib.rs
    107
        clippy::needless_doctest_main,
    108
        clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
    109
        clippy::unused_self,
  • fruit-salad 0.0.2/src/lib.rs
    169
    #![warn(clippy::pedantic, missing_docs)]
    170
    #![allow(clippy::semicolon_if_nothing_returned)]
    171
    #![no_std]
  • fruit-salad_proc-macro-definitions 0.0.1/src/lib.rs
    3
    #![warn(clippy::pedantic)]
    4
    #![allow(clippy::semicolon_if_nothing_returned, clippy::too_many_lines)]
  • futures-async-stream 0.2.6/tests/for_await.rs
    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)]
  • futures-async-stream 0.2.6/tests/stream.rs
    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)]
  • futures-async-stream 0.2.6/tests/try_stream.rs
    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)]
  • inventory 0.3.3/src/lib.rs
    112
        clippy::must_use_candidate,
    113
        clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
    114
    )]
  • kube-runtime 0.78.0/src/lib.rs
    17
    // Triggered by Tokio macros
    18
    #![allow(clippy::semicolon_if_nothing_returned)]
  • linotype 0.0.1/src/lib.rs
    69
    #![warn(clippy::pedantic, missing_docs)]
    70
    #![allow(clippy::semicolon_if_nothing_returned)]
  • lofty 0.11.0/src/lib.rs
    126
    	clippy::match_wildcard_for_single_variants,
    127
    	clippy::semicolon_if_nothing_returned,
    128
    	clippy::new_without_default,
  • map-of-indexes 0.1.4/src/lib.rs
    49
    #![warn(clippy::cargo)]
    50
    #![allow(clippy::semicolon_if_nothing_returned)]
    51
    // #![allow(clippy::missing_panics_doc)]
  • mm0b_parser 0.1.4/src/lib.rs
    48
      clippy::option_if_let_else,
    49
      clippy::semicolon_if_nothing_returned,
    50
      clippy::shadow_unrelated,
  • physx 0.16.0/src/lib.rs
    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
  • pink-erased-serde 0.3.23/src/lib.rs
    107
        clippy::needless_doctest_main,
    108
        clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
    109
        clippy::unused_self,
  • pinus 0.0.4/src/lib.rs
    45
    #![warn(clippy::pedantic, missing_docs)]
    46
    #![allow(clippy::semicolon_if_nothing_returned)]
  • relearn 0.3.1/src/lib.rs
    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.
  • retroboard 0.2.9/src/lib.rs
    2
    #![warn(clippy::cargo)]
    3
    #![allow(clippy::semicolon_if_nothing_returned)]
    4
    #![allow(clippy::missing_panics_doc)]
  • rustversion 1.0.11/tests/test_const.rs
    1
    #![allow(clippy::semicolon_if_nothing_returned)] // https://github.com/rust-lang/rust-clippy/issues/7324
  • semver 1.0.16/src/lib.rs
    81
        clippy::redundant_else,
    82
        clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
    83
        clippy::similar_names,
  • serde 1.0.152/src/lib.rs
    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
  • simdutf8 0.1.4/src/lib.rs
    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)]
  • taml 0.0.11/src/lib.rs
    4
    #![allow(
    5
    	clippy::semicolon_if_nothing_returned,
    6
    	clippy::trivially_copy_pass_by_ref
  • this-is-fine 0.0.1/src/lib.rs
    15
    #![warn(clippy::pedantic)]
    16
    #![allow(clippy::semicolon_if_nothing_returned)]
    17
    #![no_std]
  • tiptoe 0.0.2/src/lib.rs
    52
    #![warn(clippy::pedantic, missing_docs)]
    53
    #![allow(clippy::semicolon_if_nothing_returned)]
    54
    #![no_std]
  • try-lazy-init 0.0.2/src/lib.rs
    2
    #![warn(clippy::pedantic)]
    3
    #![allow(clippy::semicolon_if_nothing_returned)]
    4
    #![deny(missing_docs)]
  • twilight-model 0.15.0-rc.1/src/lib.rs
    15
        clippy::must_use_candidate,
    16
        clippy::semicolon_if_nothing_returned,
    17
        clippy::used_underscore_binding