• bofh 0.0.8/src/lib.rs
    313
    impl Drop for Bofh {
    314
        #[allow(clippy::let_underscore_drop)]
    315
        /// Logs the user out of the bofhd session.
  • deranged-macros 0.1.0/src/lib.rs
    172
            {
    173
                #[allow(clippy::let_underscore_drop)]
    174
                if punct.as_char() == '-' {
  • hashbrown 0.13.2/src/map.rs
    6929
                #[allow(clippy::let_underscore_drop)] // kind-of a false positive
    6930
                for _ in half.by_ref() {}
  • kirunadb 0.0.1/src/ffi_cxx.rs
    9
        clippy::items_after_statements,
    10
        clippy::let_underscore_drop,
    11
        clippy::trait_duplication_in_bounds,
  • lignin 0.1.0/src/callback_registry.rs
    304
    #[allow(clippy::inline_always)] // All functions are no operations or constants or similar.
    305
    #[allow(clippy::let_underscore_drop)]
    306
    #[allow(clippy::needless_pass_by_value)]
  • nng 1.0.1/src/aio.rs
    523
    {
    524
    	#[allow(clippy::let_underscore_drop)]
    525
    	fn drop(&mut self)
  • nokhwa-bindings-windows 0.4.0/src/lib.rs
    1203
                    if CAMERA_REFCNT.load(Ordering::SeqCst) == 0 {
    1204
                        #[allow(clippy::let_underscore_drop)]
    1205
                        let _ = de_initialize_mf();
  • rbw 1.4.3/src/bin/rbw/commands.rs
    1031
            // https://github.com/rust-lang/rust-clippy/issues/8003
    1032
            #[allow(clippy::let_underscore_drop)]
    1033
            let _ = crate::actions::quit();
  • rbw 1.4.3/src/bin/rbw-agent/sock.rs
    48
        // https://github.com/rust-lang/rust-clippy/issues/8003
    49
        #[allow(clippy::let_underscore_drop)]
    50
        let _ = std::fs::remove_file(&path);
  • smolbar 0.7.0/src/main.rs
    70
        #[allow(clippy::let_underscore_drop)]
    71
        if let Err(err) = try_main(args).await {
  • termusic 0.7.8/src/player/mpv_backend/libmpv/mpv.rs
    295
    #[allow(clippy::let_underscore_drop, clippy::ptr_as_ptr)]
    296
    unsafe impl GetData for String {
  • textmode 0.3.0/src/blocking/input.rs
    56
            // https://github.com/rust-lang/rust-clippy/issues/8003
    57
            #[allow(clippy::let_underscore_drop)]
    58
            let _ = self.cleanup();
  • textmode 0.3.0/src/blocking/output.rs
    39
            // https://github.com/rust-lang/rust-clippy/issues/8003
    40
            #[allow(clippy::let_underscore_drop)]
    41
            let _ = self.cleanup();
  • textmode 0.3.0/src/input.rs
    70
                // https://github.com/rust-lang/rust-clippy/issues/8003
    71
                #[allow(clippy::let_underscore_drop)]
    72
                let _ = self.cleanup().await;
  • textmode 0.3.0/src/output.rs
    50
                // https://github.com/rust-lang/rust-clippy/issues/8003
    51
                #[allow(clippy::let_underscore_drop)]
    52
                let _ = self.cleanup().await;
  • twilight-gateway 0.15.0-rc.2/src/shard.rs
    907
                    tracing::debug!("sending identify");
    908
                    #[allow(clippy::let_underscore_drop)]
    909
                    let _ = sender.command(&identify);
  • amadeus 0.4.3/src/lib.rs
    29
    	clippy::missing_safety_doc,
    30
    	clippy::let_underscore_drop
    31
    )]
  • amadeus-aws 0.4.3/src/lib.rs
    29
    	clippy::missing_panics_doc,
    30
    	clippy::let_underscore_drop
    31
    )]
  • amadeus-commoncrawl 0.4.3/src/lib.rs
    26
    	clippy::missing_panics_doc,
    27
    	clippy::let_underscore_drop
    28
    )]
  • amadeus-core 0.4.3/src/lib.rs
    37
    	clippy::missing_panics_doc,
    38
    	clippy::let_underscore_drop,
    39
    	clippy::unnested_or_patterns
  • amadeus-postgres 0.4.3/src/lib.rs
    27
    	clippy::missing_errors_doc,
    28
    	clippy::let_underscore_drop
    29
    )]
  • amadeus-streaming 0.4.3/src/lib.rs
    57
    	clippy::missing_panics_doc,
    58
    	clippy::let_underscore_drop
    59
    )]
  • cargo-bisect-rustc 0.6.5/src/main.rs
    3
    #![allow(clippy::semicolon_if_nothing_returned)]
    4
    #![allow(clippy::let_underscore_drop)]
    5
    #![allow(clippy::single_match_else)]
  • cargo-print 0.1.6/src/main.rs
    17
    )] // from https://github.com/rust-unofficial/patterns/blob/master/anti_patterns/deny-warnings.md
    18
    #![allow(clippy::if_not_else, clippy::too_many_lines, clippy::let_underscore_drop)]
  • db-dump-concat 0.1.1/main.rs
    20
        clippy::cast_sign_loss,
    21
        clippy::let_underscore_drop,
    22
        clippy::never_loop,
  • dexr 0.4.3/src/main.rs
    18
    #![deny(unsafe_code)]
    19
    #![allow(clippy::let_underscore_drop, clippy::unused_async)]
  • enum_delegate_lib 0.2.0/src/lib.rs
    3
    // underscore drop seems explicit enough
    4
    #![allow(clippy::let_underscore_drop)]
    5
    // too pedantic - these are valid names
  • epub 2.0.0/src/lib.rs
    3
        clippy::module_name_repetitions,
    4
        clippy::let_underscore_drop,
  • iced_style_config 0.2.1/src/lib.rs
    70
        clippy::default_trait_access,
    71
        clippy::let_underscore_drop,
    72
        clippy::missing_errors_doc,
  • io-extras 0.17.1/src/os/windows/stdio.rs
    14
        clippy::needless_borrow,
    15
        clippy::let_underscore_drop,
    16
        clippy::match_same_arms
  • legacylisten 0.2.0/src/lib.rs
    251
    // each other.
    252
    #![allow(clippy::let_underscore_drop)]
  • matterdb 1.2.0/src/views/tests.rs
    1
    #![allow(clippy::let_underscore_drop)]
  • metaldb 1.0.0/src/views/tests.rs
    1
    #![allow(clippy::let_underscore_drop)]
  • miniserde-miku 0.1.23/src/lib.rs
    152
        clippy::enum_glob_use,
    153
        clippy::let_underscore_drop,
    154
        clippy::missing_errors_doc,
  • qsv 0.87.0/src/main.rs
    14
            clippy::enum_glob_use,
    15
            let_underscore_drop,
    16
            clippy::result_unit_err,
  • qsv 0.87.0/src/maindp.rs
    14
            clippy::enum_glob_use,
    15
            let_underscore_drop,
    16
            clippy::result_unit_err,
  • relearn 0.3.1/src/lib.rs
    32
        clippy::enum_glob_use,        // Use Enum globs in match statements
    33
        clippy::let_underscore_drop,  // Typical of Tensor in-place ops.
    34
        clippy::missing_errors_doc,   // Errors obvious or complex --- easier to look at error type
  • rust-quiz 0.0.5/src/main.rs
    1
    #![allow(
    2
        clippy::let_underscore_drop,
    3
        clippy::match_bool,
  • safe-quote 1.0.15/tests/test.rs
    2
        clippy::blacklisted_name,
    3
        clippy::let_underscore_drop,
    4
        clippy::shadow_unrelated,
  • scratch 1.0.3/build.rs
    1
    #![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
    2
    #![cfg_attr(feature = "cargo-clippy", allow(let_underscore_drop))]
  • scratch 1.0.3/src/lib.rs
    116
            doc_markdown,
    117
            let_underscore_drop,
    118
            must_use_candidate,
  • serde_derive_internals 0.26.0/lib.rs
    22
        clippy::items_after_statements,
    23
        clippy::let_underscore_drop,
    24
        clippy::match_same_arms,
  • termin-8 0.1.7/src/terminal.rs
    217
    impl Drop for Terminal {
    218
        #![allow(clippy::let_underscore_drop)]
    219
        fn drop(&mut self) {
  • time 0.3.17/src/tests.rs
    16
    #![allow(
    17
        clippy::let_underscore_drop,
    18
        clippy::clone_on_copy,
  • trybuild2 1.0.0/src/lib.rs
    228
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    229
        clippy::let_underscore_drop,
    230
        clippy::manual_assert,