• bender 0.27.1/src/git.rs
    54
        /// command's exit code.
    55
        #[allow(clippy::format_push_string)]
    56
        pub async fn spawn(self, mut cmd: Command, check: bool) -> Result<String> {
  • ego 1.1.6/src/main.rs
    340
    #[allow(clippy::format_push_string)]
    341
    fn machinectl_remote_command(remote_cmd: Vec<String>, envvars: Vec<String>, bare: bool) -> String {
  • genact 1.2.2/src/modules/cryptomining.rs
    17
    #[allow(clippy::format_push_string)]
    18
    #[async_trait(?Send)]
  • grass_compiler 0.12.2/src/ast/args.rs
    236
                let mut err = String::with_capacity(50);
    237
                #[allow(clippy::format_push_string)]
    238
                err.push_str(&format!("Only {max} argument", max = max));
  • krill 0.12.1/src/daemon/http/server.rs
    440
    /// Produce prometheus style metrics
    441
    #[allow(clippy::format_push_string)]
    442
    pub async fn metrics(req: Request) -> RoutingResult {
  • megra_rs 0.0.6/src/session.rs
    820
        /// start a scheduler, create scheduler data, etc ...
    821
        #[allow(clippy::format_push_string)]
    822
        fn start_scheduler(
  • naia-parse 0.13.0/src/parse.rs
    163
            while let Some(next_ty) = next_type(&mut group.stream().into_iter().peekable()) {
    164
                #[allow(clippy::format_push_string)]
    165
                tuple_type.path.push_str(&format!("{}, ", next_ty.path));
    176
            let next_ident = next_ident(source).expect("Expecting next path part after ::");
    177
            #[allow(clippy::format_push_string)]
    178
            ty.push_str(&format!("::{}", next_ident));
    185
                let next_ty = next_type(source).expect("Expecting generic argument");
    186
                #[allow(clippy::format_push_string)]
    187
                generic_type.path.push_str(&format!(", {}", next_ty.path));
  • naia-serde-derive 0.13.0/src/impls/enumeration.rs
    14
    #[allow(clippy::format_push_string)]
    15
    pub fn derive_serde_enum(enum_: &Enum) -> String {
  • naia-serde-derive 0.13.0/src/impls/structure.rs
    3
    #[allow(clippy::format_push_string)]
    4
    pub fn derive_serde_struct(struct_: &Struct) -> String {
  • naia-serde-derive 0.13.0/src/impls/tuple_structure.rs
    3
    #[allow(clippy::format_push_string)]
    4
    pub fn derive_serde_tuple_struct(struct_: &Struct) -> String {
  • snarkvm 0.9.11/vm/cli/updater.rs
    31
        /// Show all available releases for `snarkvm`.
    32
        #[allow(clippy::format_push_string)]
    33
        pub fn show_available_releases() -> Result<String> {
  • snarkvm-algorithms 0.9.11/src/polycommit/sonic_pc/mod.rs
    223
        #[allow(clippy::type_complexity)]
    224
        #[allow(clippy::format_push_string)]
    225
        pub fn commit_with_terminator<'a>(
  • snarkvm-compiler 0.9.0/src/program/parse.rs
    128
    #[allow(clippy::format_push_string)]
    129
    impl<N: Network> Display for Program<N> {
  • snarkvm-console-program 0.9.11/src/data_types/struct_/parse.rs
    103
    #[allow(clippy::format_push_string)]
    104
    impl<N: Network> Display for Struct<N> {
  • snarkvm-synthesizer 0.9.11/src/program/parse.rs
    126
    #[allow(clippy::format_push_string)]
    127
    impl<N: Network> Display for Program<N> {
  • todo_lib 6.1.1/src/todotxt/task.rs
    240
            }
    241
            #[allow(clippy::format_push_string)]
    242
            match self.tags.get(tag) {
  • ttdl 3.6.2/src/fmt.rs
    1006
    #[allow(clippy::format_push_string)]
    1007
    fn external_reconstruct(task: &todotxt::Task, c: &Conf) -> Option<(String, json::JsonValue)> {
    1032
    #[allow(clippy::format_push_string)]
    1033
    fn exec_plugin(c: &Conf, plugin: &str, args: &str) -> Result<String, String> {
  • xh 0.17.0/src/printer.rs
    326
                    Ok(value) => header_string.push_str(value),
    327
                    #[allow(clippy::format_push_string)]
    328
                    Err(_) => header_string.push_str(&format!("{:?}", value)),
  • acceptxmr 0.11.1/src/lib.rs
    84
    #![allow(clippy::module_name_repetitions)]
    85
    #![allow(clippy::format_push_string)]
  • boa_engine 0.16.0/src/lib.rs
    71
        // We only use it in `ToInternedString` where performance is not an issue.
    72
        clippy::format_push_string,
    73
        // TODO deny once false positive are fixed (https://github.com/rust-lang/rust-clippy/issues/9076).
  • miniserve 0.22.0/src/listing.rs
    1
    #![allow(clippy::format_push_string)]
    2
    use std::io;
  • plow_linter 0.2.8/src/lib.rs
    25
        clippy::pub_use,
    26
        clippy::format_push_string,
  • plow_package_management 0.3.1/src/lib.rs
    25
        clippy::pub_use,
    26
        clippy::format_push_string,
  • prost-build 0.11.6/src/lib.rs
    1
    #![doc(html_root_url = "https://docs.rs/prost-build/0.11.6")]
    2
    #![allow(clippy::option_as_ref_deref, clippy::format_push_string)]
  • ragged-buffer 0.4.3/src/monomorphs.rs
    1
    #![allow(clippy::format_push_string)] // Caused by FromPyObject macro
    2
    use numpy::PyReadonlyArray1;