Ignore new_without_default clippy lint

warning: you should consider adding a `Default` implementation for `CommandArgs`
      --> src/cmd.rs:11:5
       |
    11 | /     pub fn new() -> Self {
    12 | |         CommandArgs { args: Vec::new() }
    13 | |     }
       | |_____^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
       = note: `#[warn(clippy::new_without_default)]` on by default
    help: try adding this
       |
    10 + impl Default for CommandArgs {
    11 +     fn default() -> Self {
    12 +         Self::new()
    13 +     }
    14 + }
       |
This commit is contained in:
David Tolnay 2024-04-06 09:26:46 -07:00
parent da2d88c871
commit 5c4d331ce5
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -8,6 +8,7 @@
clippy::module_name_repetitions,
clippy::needless_pass_by_value,
clippy::needless_return,
clippy::new_without_default,
clippy::option_option,
clippy::struct_excessive_bools,
clippy::too_many_lines,