2021-11-13 17:37:31 +00:00
|
|
|
# https://github.com/rust-lang/cargo/issues/5034#issuecomment-927105016
|
|
|
|
[target.'cfg(feature = "cargo-clippy")']
|
|
|
|
rustflags = [
|
2022-08-15 15:20:23 +00:00
|
|
|
"-Aclippy::derive_partial_eq_without_eq",
|
2021-12-28 18:34:13 +00:00
|
|
|
"-Aclippy::len_zero",
|
2021-11-13 17:37:31 +00:00
|
|
|
"-Aclippy::let_and_return",
|
|
|
|
"-Aclippy::map_entry",
|
|
|
|
"-Aclippy::or_fun_call",
|
|
|
|
"-Aclippy::redundant_field_names",
|
|
|
|
"-Aclippy::unused_unit",
|
2022-07-14 10:18:03 +00:00
|
|
|
"-Aclippy::enum_variant_names",
|
2022-07-28 14:09:57 +00:00
|
|
|
"-Aclippy::format_push_string",
|
2021-11-13 17:37:31 +00:00
|
|
|
]
|