• file-with-meta 0.2.0/src/tests.rs
    40
    #[test]
    41
    #[allow(clippy::shadow_reuse)]
    42
    #[allow(clippy::shadow_unrelated)]
    140
    #[test]
    141
    #[allow(clippy::shadow_reuse)]
    142
    #[allow(clippy::shadow_unrelated)]
  • glv 3.0.5/src/utils.rs
    30
            let mut transfer = easy.transfer();
    31
            #[allow(clippy::shadow_reuse)]
    32
            transfer
  • meiosis 0.1.0/src/algorithm/fitness.rs
    636
            #[allow(clippy::shadow_reuse, clippy::shadow_unrelated, clippy::float_arithmetic)]
    637
            let species = species
  • neodyn_xc 0.4.0/src/de/binary/slice.rs
    40
        /// `rest` (i.e. the same every time) actually removes cognitive load.
    41
        #[allow(clippy::shadow_reuse)]
    42
        fn parse(bytes: &'de [u8]) -> Result<(Self, &[u8]), Error> {
    137
        /// Returns the parsed symtab and the rest of the slice for the body.
    138
        #[allow(clippy::shadow_reuse)]
    139
        fn parse(bytes: &[u8]) -> Result<(SymbolRefTable, &[u8]), Error> {
  • ranges 0.3.3/src/domain/i128.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic, clippy::as_conversions)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/i16.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic, clippy::as_conversions)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/i32.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic, clippy::as_conversions)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/i64.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic, clippy::as_conversions)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/i8.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic, clippy::as_conversions)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/isize.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic, clippy::as_conversions)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/u128.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/u16.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/u32.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • ranges 0.3.3/src/domain/u64.rs
    41
        #[must_use]
    42
        #[allow(clippy::shadow_reuse, clippy::integer_arithmetic)]
    43
        fn shares_neighbour_with(&self, other: &Self) -> bool {
  • allochronic-util 0.0.1-dev-1/src/lib.rs
    39
    	clippy::redundant_pub_crate,
    40
    	clippy::shadow_reuse,
    41
    	clippy::tabs_in_doc_comments,
  • allochronic-util-macros 0.0.1-dev-1/src/lib.rs
    39
    	clippy::redundant_pub_crate,
    40
    	clippy::shadow_reuse,
    41
    	clippy::tabs_in_doc_comments,
  • ascii 1.1.0/src/lib.rs
    46
    // TODO: Consider removing `shadow_unrelated`, as it can show some actual logic errors
    47
    #![allow(clippy::shadow_unrelated, clippy::shadow_reuse, clippy::shadow_same)]
    48
    // A `if let` / `else` sometimes looks better than using iterator adaptors
  • async-rdma 0.4.0/src/lib.rs
    113
        clippy::shadow_same, // Not too much bad
    114
        clippy::shadow_reuse, // Not too much bad
    115
        clippy::exhaustive_enums,
  • bve 0.0.1/src/lib.rs
    40
    #![allow(clippy::result_expect_used)]
    41
    #![allow(clippy::shadow_reuse)]
    42
    #![allow(clippy::shadow_same)]
  • bve-derive 0.0.1/src/lib.rs
    42
    #![allow(clippy::result_expect_used)]
    43
    #![allow(clippy::shadow_reuse)]
    44
    #![allow(clippy::shadow_same)]
  • bve-native 0.0.1/src/lib.rs
    82
    #![allow(clippy::result_expect_used)]
    83
    #![allow(clippy::shadow_reuse)]
    84
    #![allow(clippy::shadow_same)]
  • cargo-cov 0.0.5/src/main.rs
    8
    #![cfg_attr(feature = "cargo-clippy", warn(warnings, clippy_pedantic))]
    9
    #![cfg_attr(feature = "cargo-clippy", allow(missing_docs_in_private_items, non_ascii_literal, shadow_reuse, unused_results))]
    10
    // `unused_results` caused too many false positive here.
  • cleu-orm-derive 0.1.0/src/lib.rs
    3
    #![allow(clippy::shadow_reuse)]
  • core_arch 0.1.5/src/lib.rs
    46
        clippy::cast_precision_loss,
    47
        clippy::shadow_reuse,
    48
        clippy::cognitive_complexity,
  • coresimd 0.1.2/src/lib.rs
    55
            cast_precision_loss,
    56
            shadow_reuse,
    57
            cyclomatic_complexity,
  • fabruic 0.0.1-dev-1/src/lib.rs
    39
    	clippy::redundant_pub_crate,
    40
    	clippy::shadow_reuse,
    41
    	clippy::tabs_in_doc_comments,
  • graph_safe_compare 0.2.1/src/lib.rs
    62
        clippy::pattern_type_mismatch,
    63
        clippy::shadow_reuse
    64
    )]
  • imdl 0.1.12/src/lib.rs
    16
      clippy::non_ascii_literal,
    17
      clippy::shadow_reuse,
    18
      clippy::struct_excessive_bools,
  • io-extras 0.17.1/src/os/windows/stdio.rs
    7
        clippy::cast_possible_wrap,
    8
        clippy::shadow_reuse,
    9
        clippy::panic_in_result_fn,
  • lecturn 0.1.9/src/main.rs
    4
        clippy::implicit_return,
    5
        clippy::shadow_reuse,
    6
        clippy::print_stdout,
  • libpd-rs 0.1.9/src/lib.rs
    18
        clippy::pattern_type_mismatch,
    19
        clippy::shadow_reuse,
    20
        clippy::shadow_same,
  • nats 0.23.1/src/lib.rs
    185
        clippy::await_holding_lock,
    186
        clippy::shadow_reuse,
    187
        clippy::shadow_same,
  • nats-aflowt 0.16.105/src/lib.rs
    187
        clippy::await_holding_lock,
    188
        clippy::shadow_reuse,
    189
        clippy::shadow_same,
  • plow_cli 0.4.8/src/main.rs
    16
        clippy::pattern_type_mismatch,
    17
        clippy::shadow_reuse,
    18
        clippy::shadow_same,
  • plow_graphify 0.2.2/src/lib.rs
    16
        clippy::pattern_type_mismatch,
    17
        clippy::shadow_reuse,
    18
        clippy::shadow_same,
  • plow_linter 0.2.8/src/lib.rs
    16
        clippy::pattern_type_mismatch,
    17
        clippy::shadow_reuse,
    18
        clippy::shadow_same,
  • plow_ontology 0.2.1/src/lib.rs
    16
        clippy::pattern_type_mismatch,
    17
        clippy::shadow_reuse,
    18
        clippy::shadow_same,
  • plow_package_management 0.3.1/src/lib.rs
    16
        clippy::pattern_type_mismatch,
    17
        clippy::shadow_reuse,
    18
        clippy::shadow_same,
  • rdma 0.3.0/src/lib.rs
    12
        clippy::transmute_ptr_to_ptr,
    13
        clippy::shadow_reuse,
    14
        clippy::default_numeric_fallback,
  • rim 0.1.1/src/main.rs
    4
        clippy::implicit_return,
    5
        clippy::shadow_reuse,
    6
        clippy::print_stdout,
  • rustfmt_lib 2.0.0-rc.2/tests/source/cfg_if/lib.rs
    15
    #![feature(const_fn, staged_api, stdsimd, doc_cfg, allow_internal_unstable)]
    16
    #![allow(clippy::shadow_reuse)]
    17
    #![deny(clippy::missing_inline_in_public_items)]
  • rustfmt_lib 2.0.0-rc.2/tests/target/cfg_if/lib.rs
    15
    #![feature(const_fn, staged_api, stdsimd, doc_cfg, allow_internal_unstable)]
    16
    #![allow(clippy::shadow_reuse)]
    17
    #![deny(clippy::missing_inline_in_public_items)]
  • rustfmt-nightly 1.4.21/tests/source/cfg_if/lib.rs
    15
    #![feature(const_fn, staged_api, stdsimd, doc_cfg, allow_internal_unstable)]
    16
    #![allow(clippy::shadow_reuse)]
    17
    #![deny(clippy::missing_inline_in_public_items)]
  • rustfmt-nightly 1.4.21/tests/target/cfg_if/lib.rs
    15
    #![feature(const_fn, staged_api, stdsimd, doc_cfg, allow_internal_unstable)]
    16
    #![allow(clippy::shadow_reuse)]
    17
    #![deny(clippy::missing_inline_in_public_items)]
  • rvim 0.0.8/src/main.rs
    4
        clippy::implicit_return,
    5
        clippy::shadow_reuse,
    6
        clippy::print_stdout,
  • s3-server 0.2.0/src/lib.rs
    106
        clippy::separated_literal_suffix, // Conflicts with `clippy::unseparated_literal_suffix`
    107
        clippy::shadow_reuse, // It is a common pattern
    108
    )]
  • serde_json_experimental 1.0.29-rc1/src/lib.rs
    338
        cast_lossless,
    339
        shadow_reuse,
    340
        shadow_unrelated,
  • slice-deque 0.3.0/src/lib.rs
    134
        clippy::len_without_is_empty,
    135
        clippy::shadow_reuse,
    136
        clippy::cast_possible_wrap,
  • slice-ring-buffer 0.3.2/src/lib.rs
    134
        clippy::len_without_is_empty,
    135
        clippy::shadow_reuse,
    136
        clippy::cast_possible_wrap,
  • std_detect 0.1.5/src/lib.rs
    15
    #![feature(const_fn, staged_api, stdsimd, doc_cfg, allow_internal_unstable)]
    16
    #![allow(clippy::shadow_reuse)]
    17
    #![deny(clippy::missing_inline_in_public_items)]
  • stdsimd 0.1.2/src/lib.rs
    7
    #![feature(doc_cfg, allow_internal_unstable)]
    8
    #![cfg_attr(feature = "cargo-clippy", allow(shadow_reuse))]
    9
    #![cfg_attr(target_os = "linux", feature(linkage))]
  • string-err 0.1.1/src/lib.rs
    36
    	clippy::items_after_statements,         // Sometimes we only add things from where they are first used, even if they are available in the whole scope
    37
    	clippy::shadow_reuse,                   // We shadow values when accepting generics `file: impl AsRef<U>` and `let file = file.as_ref()`, for example
    38
    	clippy::multiple_inherent_impl,         // We separate `impl`s where possible based on their purpose
  • tenable 0.1.1/src/lib.rs
    209
        clippy::missing_docs_in_private_items,
    210
        clippy::shadow_reuse,
    211
        clippy::similar_names,
  • twitch-helix 0.1.0/src/lib.rs
    20
    // We shadow variables, as long as they have the same meaning
    21
    #![allow(clippy::shadow_reuse)]
    22
    // We have fine-grained error types, which are self-explanatory
  • vqueue 2.0.1-rc.4/src/lib.rs
    40
        clippy::unseparated_literal_suffix,
    41
        clippy::shadow_reuse,
    42
        clippy::mod_module_files
  • vsmtp-delivery 2.0.1-rc.4/src/lib.rs
    36
        clippy::mod_module_files,
    37
        clippy::shadow_reuse,
    38
        clippy::pattern_type_mismatch
  • vsmtp-plugin-mysql 1.4.0-rc.10/src/lib.rs
    34
        clippy::missing_docs_in_private_items,
    35
        clippy::shadow_reuse
    36
    )]
  • vsmtp-protocol 2.0.1-rc.4/src/lib.rs
    36
        clippy::pub_use,
    37
        clippy::shadow_reuse,
    38
        clippy::implicit_return,