• ndsparse 0.8.1/src/coo.rs
    208
              // Capacity was already checked
    209
              clippy::let_underscore_must_use
    210
            )]
  • ndstruct 1.0.0/src/coo.rs
    205
              // Capacity was already checked
    206
              clippy::let_underscore_must_use
    207
            )]
  • rust-query 0.0.0-alpha-1/src/client/engine.rs
    98
                // Future abortion should be expected, and not handled
    99
                #[allow(clippy::let_underscore_must_use)]
    100
                let _ = rt.block_on(abortable);
  • bve 0.0.1/src/lib.rs
    30
    #![allow(clippy::integer_division)]
    31
    #![allow(clippy::let_underscore_must_use)]
    32
    #![allow(clippy::match_bool)] // prettier
  • bve-derive 0.0.1/src/lib.rs
    32
    #![allow(clippy::integer_division)]
    33
    #![allow(clippy::let_underscore_must_use)]
    34
    #![allow(clippy::match_bool)] // prettier
  • bve-native 0.0.1/src/lib.rs
    71
    #![allow(clippy::integer_division)]
    72
    #![allow(clippy::let_underscore_must_use)]
    73
    #![allow(clippy::match_bool)] // prettier
  • string-err 0.1.1/src/lib.rs
    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.