• loader-rs 0.7.0/src/testing_helpers.rs
    56
    impl MockLoaderRequest {
    57
        #[allow(clippy::inefficient_to_string)]
    58
        fn build_mock_request(&self) -> mockito::Mock {
  • starlark 0.8.0/src/syntax/mod.rs
    38
    // Things we explicitly turn on need to be explicitly turned off
    39
    #[allow(clippy::inefficient_to_string)]
    40
    #[allow(clippy::trivially_copy_pass_by_ref)]
  • vkcargo 0.45.1/src/cargo/lib.rs
    19
    #![allow(clippy::write_with_newline)] // too pedantic
    20
    #![allow(clippy::inefficient_to_string)] // this causes suggestions that result in `(*s).to_string()`
    21
    #![warn(clippy::needless_borrow)]
  • vkcargo 0.45.1/tests/testsuite/main.rs
    6
    #![allow(clippy::block_in_if_condition_stmt)] // clippy doesn't agree with rustfmt 😂
    7
    #![allow(clippy::inefficient_to_string)] // this causes suggestions that result in `(*s).to_string()`
    8
    #![warn(clippy::needless_borrow)]