• cairo-lang-lowering 1.0.0-alpha.2/src/borrow_check/demand.rs
    37
                    let var = &borrow_checker.lowered.variables[*var];
    38
                    #[allow(clippy::overly_complex_bool_expr)]
    39
                    if !var.droppable {
  • cairo-lang-lowering 1.0.0-alpha.2/src/borrow_check/mod.rs
    174
                        let var = &self.lowered.variables[*var];
    175
                        #[allow(clippy::overly_complex_bool_expr)]
    176
                        if false && !var.droppable {
  • ep-miniaudio-sys 2.4.0/build.rs
    175
    /// Enables SIMD flags for CC based on enabled Rust features.
    176
    #[allow(clippy::logic_bug)]
    177
    fn apply_flags(b: &mut cc::Build) {
    195
    /// Emits features that map to miniaudio platform feature macros.
    196
    #[allow(clippy::logic_bug)]
    197
    fn emit_supported_features() {
  • om-fork-ep-miniaudio-sys 2.6.0/build.rs
    235
    /// Enables SIMD flags for CC based on enabled Rust features.
    236
    #[allow(clippy::logic_bug)]
    237
    fn apply_flags(b: &mut cc::Build) {
    255
    /// Emits features that map to miniaudio platform feature macros.
    256
    #[allow(clippy::logic_bug)]
    257
    fn emit_supported_features() {
  • ra_ap_syntax 0.0.149/src/syntax_node.rs
    50
            // Disable block validation, see https://github.com/rust-lang/rust-analyzer/pull/10357
    51
            #[allow(clippy::overly_complex_bool_expr)]
    52
            if cfg!(debug_assertions) && false {
  • anyhow 1.0.68/tests/test_ensure.rs
    9
        clippy::never_loop,
    10
        clippy::overly_complex_bool_expr,
    11
        clippy::redundant_closure_call,
  • swc_ecma_minifier 0.166.10/src/lib.rs
    34
    #![allow(clippy::vec_box)]
    35
    #![allow(clippy::overly_complex_bool_expr)]
    36
    #![allow(clippy::only_used_in_recursion)]