[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-153.1.0esr-16.0-1] 3 commits: fixup! BB 42728: Modify ./mach lint to skip unused linters



Title: GitLab

Pier Angelo Vendrame pushed to branch tor-browser-153.1.0esr-16.0-1 at The Tor Project / Applications / Tor Browser

Commits:

  • d0f160ff
    by Beatriz Rizental at 2026-08-19T09:42:41+02:00
    fixup! BB 42728: Modify ./mach lint to skip unused linters
    
    Bug 45224: Enable Rust linters
    
  • d5978a68
    by Beatriz Rizental at 2026-08-19T09:42:41+02:00
    fixup! TB 44806: Implement the tor integration in Rust.
    
    Bug 45224: Enable Rust linters
    
  • 14bc2a35
    by Beatriz Rizental at 2026-08-19T09:42:41+02:00
    fixup! BB 41916: Letterboxing preferences UI
    
    Fix lints
    

4 changed files:

Changes:

  • browser/components/preferences/config/letterboxing.mjs
    ... ... @@ -78,7 +78,8 @@ Preferences.addSetting({
    78 78
     SettingGroupManager.registerGroups({
    
    79 79
       letterboxing: {
    
    80 80
         l10nId: "letterboxing-settings-group",
    
    81
    -    supportPage: "tor-manual:features__fingerprinting-protections___letterboxing",
    
    81
    +    supportPage:
    
    82
    +      "tor-manual:features__fingerprinting-protections___letterboxing",
    
    82 83
         headingLevel: 2,
    
    83 84
         items: [
    
    84 85
           {
    

  • python/mozlint/mozlint/cli.py
    ... ... @@ -25,7 +25,6 @@ INACTIVE_LINTERS = [
    25 25
         "android-javadoc",
    
    26 26
         "android-lint",
    
    27 27
         "android-test",
    
    28
    -    "clippy",
    
    29 28
         "codespell",
    
    30 29
         "condprof-addons",
    
    31 30
         "file-perm",
    

  • toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/factory.rs
    ... ... @@ -424,7 +424,9 @@ mod tests {
    424 424
             assert!(!factory.has_pending_data());
    
    425 425
     
    
    426 426
             assert_eq!(
    
    427
    -            factory.build(&Bytes::from_static(b"250 OK\r\nA\r\n")).unwrap_err(),
    
    427
    +            factory
    
    428
    +                .build(&Bytes::from_static(b"250 OK\r\nA\r\n"))
    
    429
    +                .unwrap_err(),
    
    428 430
                 ReplyError::LineTooShort,
    
    429 431
             );
    
    430 432
             assert!(!factory.has_pending_data());
    

  • toolkit/components/tor-integration/tor_service/src/control_socket.rs
    ... ... @@ -11,7 +11,11 @@ use nserror::{
    11 11
         NS_ERROR_FAILURE, NS_ERROR_INVALID_ARG, NS_ERROR_NOT_AVAILABLE, NS_ERROR_UNEXPECTED, NS_OK,
    
    12 12
     };
    
    13 13
     use nsstring::nsACString;
    
    14
    -use std::{cell::{Cell, RefCell}, ffi::c_char, ptr::null};
    
    14
    +use std::{
    
    15
    +    cell::{Cell, RefCell},
    
    16
    +    ffi::c_char,
    
    17
    +    ptr::null,
    
    18
    +};
    
    15 19
     use thin_vec::ThinVec;
    
    16 20
     use tor_provider::ctor::{ControlSocket, ControlSocketError};
    
    17 21
     use xpcom::interfaces::{
    

  • _______________________________________________
    tor-commits mailing list -- tor-commits@xxxxxxxxxxxxxxxxxxxx
    To unsubscribe send an email to tor-commits-leave@xxxxxxxxxxxxxxxxxxxx