• cucumber 0.19.1/src/writer/summarize.rs
    560
    // We better keep this here, as it's related to summarization only.
    561
    #[allow(clippy::multiple_inherent_impl)]
    562
    impl Styles {
  • cucumber-expressions 0.2.1/src/expand/mod.rs
    38
    #[allow(clippy::multiple_inherent_impl)] // because of `into-regex` feature
    39
    impl<'s> Expression<Spanned<'s>> {
  • vqueue 2.0.1-rc.4/src/cli/debugger/message_move.rs
    20
    #[allow(clippy::multiple_inherent_impl)]
    21
    impl Commands {
  • vqueue 2.0.1-rc.4/src/cli/debugger/message_remove.rs
    20
    #[allow(clippy::multiple_inherent_impl)]
    21
    impl Commands {
  • vqueue 2.0.1-rc.4/src/cli/debugger/message_show.rs
    24
    #[allow(clippy::multiple_inherent_impl)]
    25
    impl Commands {
  • vqueue 2.0.1-rc.4/src/cli/debugger/show.rs
    180
    #[allow(clippy::multiple_inherent_impl)]
    181
    impl Commands {
  • Aetherus 0.1.1/src/lib.rs
    29
        clippy::multiple_crate_versions,
    30
        clippy::multiple_inherent_impl,
    31
        clippy::panic_in_result_fn,
  • libzetta 0.3.1/src/lib.rs
    4
        clippy::module_name_repetitions,
    5
        clippy::multiple_inherent_impl,
    6
        clippy::implicit_return,
  • lmake_readme 0.5.4/src/main.rs
    179
        // Why is this bad : Splitting the implementation of a type makes the code harder to navigate.
    180
        clippy::multiple_inherent_impl,
  • lmake_semver 0.1.12/src/main.rs
    96
        // Why is this bad : Splitting the implementation of a type makes the code harder to navigate.
    97
        clippy::multiple_inherent_impl,
  • lmake_version_from_date 0.3.41/src/main.rs
    116
        //Why is this bad : Splitting the implementation of a type makes the code harder to navigate.
    117
        clippy::multiple_inherent_impl,
  • run-down 0.1.1/src/lib.rs
    69
    #![allow(clippy::missing_inline_in_public_items)]
    70
    #![allow(clippy::multiple_inherent_impl)]
    71
    #![allow(clippy::multiple_crate_versions)]
  • sparkle-cache 0.14.1/src/lib.rs
    53
        clippy::unwrap_used,
    54
        clippy::multiple_inherent_impl,
    55
        clippy::pattern_type_mismatch,
  • sparkle-cache-postgres 0.14.1/src/lib.rs
    54
        clippy::unwrap_used,
    55
        clippy::multiple_inherent_impl,
    56
        clippy::pattern_type_mismatch,
  • string-err 0.1.1/src/lib.rs
    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
    39
    	clippy::let_underscore_must_use,        // We'll only use `let _ = ...` if we really want to ignore the result
  • twilight-cache-any-backend 0.13.0/src/lib.rs
    53
        clippy::unwrap_used,
    54
        clippy::multiple_inherent_impl,
    55
        clippy::pattern_type_mismatch,