• arbitrator 0.1.3/src/main.rs
    84
    #[allow(clippy::single_char_pattern)]
    85
    fn main() -> Result<(), Box<dyn std::error::Error>> {
  • bed-reader 0.2.29/src/tests.rs
    1028
    #[allow(clippy::single_char_pattern)]
    1029
    #[test]
  • chinillaclvm_tools_rs 0.1.25/src/classic/chinillaclvm/__type_compatibility__.rs
    120
                Some(BytesFromType::Hex(hstr)) => {
    121
                    #[allow(clippy::single_char_pattern)]
    122
                    let hex_stripped = hstr
  • chinillaclvm_tools_rs 0.1.25/src/classic/platform/argparse.rs
    133
    pub fn is_optional(arg: &str) -> bool {
    134
        #[allow(clippy::single_char_pattern)]
    135
        arg.starts_with("-")
    516
                let name = &names[double_hyphen_arg_index as usize];
    517
                #[allow(clippy::single_char_pattern)]
    518
                let first_non_dash = skip_leading(name, "-").replace("-", "_");
    522
            #[allow(clippy::single_char_pattern)]
    523
            let single_hyphen_arg_index = index_of_match(
    528
                let name = &names[single_hyphen_arg_index as usize];
    529
                #[allow(clippy::single_char_pattern)]
    530
                let first_non_dash = skip_leading(name, "-").replace("-", "_");
  • clvm_tools_rs 0.1.30/src/classic/clvm/__type_compatibility__.rs
    120
                Some(BytesFromType::Hex(hstr)) => {
    121
                    #[allow(clippy::single_char_pattern)]
    122
                    let hex_stripped = hstr
  • clvm_tools_rs 0.1.30/src/classic/platform/argparse.rs
    133
    pub fn is_optional(arg: &str) -> bool {
    134
        #[allow(clippy::single_char_pattern)]
    135
        arg.starts_with("-")
    516
                let name = &names[double_hyphen_arg_index as usize];
    517
                #[allow(clippy::single_char_pattern)]
    518
                let first_non_dash = skip_leading(name, "-").replace("-", "_");
    522
            #[allow(clippy::single_char_pattern)]
    523
            let single_hyphen_arg_index = index_of_match(
    528
                let name = &names[single_hyphen_arg_index as usize];
    529
                #[allow(clippy::single_char_pattern)]
    530
                let first_non_dash = skip_leading(name, "-").replace("-", "_");
  • czkawka_gui 5.0.2/src/help_functions.rs
    340
    pub fn change_dimension_to_krotka(dimensions: String) -> (u64, u64) {
    341
        #[allow(clippy::single_char_pattern)]
    342
        let vec = dimensions.split::<&str>("x").collect::<Vec<_>>();
  • geodesy 0.9.2/src/context/plain.rs
    103
            // and add the ".macro" extension
    104
            #[allow(clippy::single_char_pattern)]
    105
            let name = name.replace(":", "_") + ".macro";
  • graph-http 0.2.2/src/download/client.rs
    51
    impl<Client, Request> DownloadClient<Client, Request> {
    52
        #[allow(clippy::single_char_pattern)]
    53
        fn parse_content_disposition(&self, headers: &HeaderMap) -> Option<OsString> {
  • humblegen 0.4.0/tests/rust/service/spec.rs
    252
    #[allow(clippy::trivial_regex)]
    253
    #[allow(clippy::single_char_pattern)]
    254
    fn routes_Godzilla<Context: Default + Sized + Send + Sync + 'static>(
    631
    #[allow(clippy::trivial_regex)]
    632
    #[allow(clippy::single_char_pattern)]
    633
    fn routes_Movies<Context: Default + Sized + Send + Sync + 'static>(
  • humblegen 0.4.0/tests/rust/service-authorization-using-interceptor/spec.rs
    119
    #[allow(clippy::trivial_regex)]
    120
    #[allow(clippy::single_char_pattern)]
    121
    fn routes_BlogApi<Context: Default + Sized + Send + Sync + 'static>(
  • inferno 0.11.14/src/collapse/vtune.rs
    114
                // We split on a string because we need to match the type of the other if branch.
    115
                #[allow(clippy::single_char_pattern)]
    116
                line.splitn(2, ",")
  • livesplit-core 0.13.0/src/timing/time_span.rs
    100
            // char, otherwise prefer using string literals.
    101
            #[allow(clippy::single_char_pattern)]
    102
            let negate =
  • nkowne63-wordle-solver-rs-01 1.0.1/src/leko_competition/interface.rs
    23
    pub trait LekoRepl: Guesser {
    24
        #[allow(clippy::single_char_pattern)]
    25
        fn run_repl(&mut self) {
  • rrise-headers 0.2.2/build.rs
    163
                else if current_type != ResourceType::Skip {
    164
                    #[allow(clippy::single_char_pattern)]
    165
                    let mut columns = line.split("\t");
  • arti 1.1.0/src/cfg.rs
    236
        #![allow(clippy::print_stdout)]
    237
        #![allow(clippy::single_char_pattern)]
    238
        #![allow(clippy::unwrap_used)]
  • arti-client 0.8.0/examples/advanced_isolation.rs
    6
    #![allow(clippy::print_stdout)]
    7
    #![allow(clippy::single_char_pattern)]
    8
    #![allow(clippy::unwrap_used)]
  • arti-client 0.8.0/examples/hook-tcp.rs
    6
    #![allow(clippy::print_stdout)]
    7
    #![allow(clippy::single_char_pattern)]
    8
    #![allow(clippy::unwrap_used)]
  • arti-client 0.8.0/examples/lazy-init.rs
    6
    #![allow(clippy::print_stdout)]
    7
    #![allow(clippy::single_char_pattern)]
    8
    #![allow(clippy::unwrap_used)]
  • arti-client 0.8.0/examples/readme.rs
    6
    #![allow(clippy::print_stdout)]
    7
    #![allow(clippy::single_char_pattern)]
    8
    #![allow(clippy::unwrap_used)]
  • arti-hyper 0.8.0/examples/hyper.rs
    6
    #![allow(clippy::print_stdout)]
    7
    #![allow(clippy::single_char_pattern)]
    8
    #![allow(clippy::unwrap_used)]
  • binfarce 0.2.1/src/lib.rs
    11
    #![allow(clippy::while_let_loop)]
    12
    #![allow(clippy::single_char_pattern)]
    13
    #![allow(clippy::many_single_char_names)]
  • cargo-lipo 3.2.0/src/main.rs
    4
        clippy::redundant_closure,
    5
        clippy::single_char_pattern
    6
    )]
  • cemtexer 0.1.3/src/csv/csv_utils.rs
    1
    #![allow(clippy::single_char_pattern)]
  • deserialize-file-size 1.0.0/src/lib.rs
    34
    #![allow(clippy::single_char_pattern)] // annoying, who the f cares "a" vs 'a'
  • dylint 2.1.3/src/toml.rs
    8
    #![allow(clippy::semicolon_if_nothing_returned)]
    9
    #![allow(clippy::single_char_pattern)]
    10
    #![allow(clippy::too_many_lines)]
  • fere-resources 0.0.0/src/mesh/obj.rs
    1
    #![allow(clippy::single_char_pattern)]
  • hippotat 1.1.7/src/lib.rs
    17
    #![allow(clippy::match_single_binding)]
    18
    #![allow(clippy::single_char_pattern)]
    19
    #![allow(clippy::unit_arg)]
  • hippotat-macros 1.1.7/macros.rs
    13
    #![allow(clippy::map_flatten)]
    14
    #![allow(clippy::single_char_pattern)]
  • omnipath 0.1.1/src/lib.rs
    31
    #![no_std]
    32
    #![allow(clippy::single_char_pattern)]
  • tor-basic-utils 0.5.0/src/futures.rs
    539
        #![allow(clippy::print_stdout)]
    540
        #![allow(clippy::single_char_pattern)]
    541
        #![allow(clippy::unwrap_used)]
  • tor-basic-utils 0.5.0/src/n_key_set.rs
    593
        #![allow(clippy::print_stdout)]
    594
        #![allow(clippy::single_char_pattern)]
    595
        #![allow(clippy::unwrap_used)]
  • tor-chanmgr 0.8.0/src/config.rs
    42
        #![allow(clippy::print_stdout)]
    43
        #![allow(clippy::single_char_pattern)]
    44
        #![allow(clippy::unwrap_used)]
  • tor-chanmgr 0.8.0/src/mgr/state/padding_test.rs
    8
    #![allow(clippy::print_stdout)]
    9
    #![allow(clippy::single_char_pattern)]
    10
    #![allow(clippy::unwrap_used)]
  • tor-chanmgr 0.8.0/src/mgr/state.rs
    534
        #![allow(clippy::print_stdout)]
    535
        #![allow(clippy::single_char_pattern)]
    536
        #![allow(clippy::unwrap_used)]
  • tor-chanmgr 0.8.0/src/transport/default.rs
    136
        #![allow(clippy::print_stdout)]
    137
        #![allow(clippy::single_char_pattern)]
    138
        #![allow(clippy::unwrap_used)]
  • tor-circmgr 0.7.0/src/path/dirpath.rs
    86
        #![allow(clippy::print_stdout)]
    87
        #![allow(clippy::single_char_pattern)]
    88
        #![allow(clippy::unwrap_used)]
  • tor-config 0.7.0/src/list_builder.rs
    745
        #![allow(clippy::print_stdout)]
    746
        #![allow(clippy::single_char_pattern)]
    747
        #![allow(clippy::unwrap_used)]
  • tor-config 0.7.0/src/misc.rs
    393
        #![allow(clippy::print_stdout)]
    394
        #![allow(clippy::single_char_pattern)]
    395
        #![allow(clippy::unwrap_used)]
  • tor-config 0.7.0/src/path.rs
    340
        #![allow(clippy::print_stdout)]
    341
        #![allow(clippy::single_char_pattern)]
    342
        #![allow(clippy::unwrap_used)]
  • tor-config 0.7.0/src/sources.rs
    408
        #![allow(clippy::print_stdout)]
    409
        #![allow(clippy::single_char_pattern)]
    410
        #![allow(clippy::unwrap_used)]
  • tor-dirclient 0.6.0/src/response.rs
    177
        #![allow(clippy::print_stdout)]
    178
        #![allow(clippy::single_char_pattern)]
    179
        #![allow(clippy::unwrap_used)]
  • tor-dirmgr 0.9.0/src/bridgedesc/bdtest.rs
    8
    #![allow(clippy::print_stdout)]
    9
    #![allow(clippy::single_char_pattern)]
    10
    #![allow(clippy::unwrap_used)]
  • tor-error 0.4.0/src/internal.rs
    255
        #![allow(clippy::print_stdout)]
    256
        #![allow(clippy::single_char_pattern)]
    257
        #![allow(clippy::unwrap_used)]
  • tor-guardmgr 0.8.0/src/bridge/config.rs
    611
        #![allow(clippy::print_stdout)]
    612
        #![allow(clippy::single_char_pattern)]
    613
        #![allow(clippy::unwrap_used)]
  • tor-guardmgr 0.8.0/src/config.rs
    41
        #![allow(clippy::print_stdout)]
    42
        #![allow(clippy::single_char_pattern)]
    43
        #![allow(clippy::unwrap_used)]
  • tor-guardmgr 0.8.0/src/fallback/set.rs
    238
        #![allow(clippy::print_stdout)]
    239
        #![allow(clippy::single_char_pattern)]
    240
        #![allow(clippy::unwrap_used)]
  • tor-linkspec 0.6.0/src/ids/set.rs
    144
        #![allow(clippy::print_stdout)]
    145
        #![allow(clippy::single_char_pattern)]
    146
        #![allow(clippy::unwrap_used)]
  • tor-proto 0.8.0/src/channel/padding.rs
    411
        #![allow(clippy::print_stdout)]
    412
        #![allow(clippy::single_char_pattern)]
    413
        #![allow(clippy::unwrap_used)]
  • tor-ptmgr 0.2.0/src/ipc.rs
    784
        #![allow(clippy::print_stdout)]
    785
        #![allow(clippy::single_char_pattern)]
    786
        #![allow(clippy::unwrap_used)]
  • tor-socksproto 0.6.0/src/handshake/client.rs
    312
        #![allow(clippy::print_stdout)]
    313
        #![allow(clippy::single_char_pattern)]
    314
        #![allow(clippy::unwrap_used)]
  • tor-socksproto 0.6.0/src/handshake.rs
    92
        #![allow(clippy::print_stdout)]
    93
        #![allow(clippy::single_char_pattern)]
    94
        #![allow(clippy::unwrap_used)]
  • ux-dx 0.2.1/src/lib.rs
    35
        clippy::too_many_arguments,
    36
        clippy::single_char_pattern,
    37
        clippy::map_clone,
  • witness 0.3.0/src/main.rs
    3
    #![allow(clippy::single_char_pattern)]