mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
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:
parent
da2d88c871
commit
5c4d331ce5
1 changed files with 1 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue