Ignore redundant_field_names lint

This commit is contained in:
David Tolnay
2018-02-27 11:13:26 -08:00
parent 8bba8447ef
commit d6f07f2f47
6 changed files with 10 additions and 8 deletions
+2 -1
View File
@@ -161,7 +161,8 @@
#![cfg_attr(feature = "cargo-clippy", allow(float_cmp))]
// Whitelisted clippy_pedantic lints
#![cfg_attr(feature = "cargo-clippy",
allow(missing_docs_in_private_items, stutter, use_debug, use_self))]
allow(empty_line_after_outer_attr, missing_docs_in_private_items,
redundant_field_names, stutter, use_debug, use_self))]
#[macro_use]
extern crate serde;