Whitelist the zero prefixed literals used in array_impls

This commit is contained in:
David Tolnay 2017-04-14 12:24:22 -07:00
parent 26d357e846
commit f2de0509f5
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -94,7 +94,10 @@
#![cfg_attr(feature = "collections", feature(collections))]
// Whitelisted clippy lints.
#![cfg_attr(feature = "cargo-clippy", allow(linkedlist, type_complexity, doc_markdown))]
#![cfg_attr(feature = "cargo-clippy", allow(doc_markdown))]
#![cfg_attr(feature = "cargo-clippy", allow(linkedlist))]
#![cfg_attr(feature = "cargo-clippy", allow(type_complexity))]
#![cfg_attr(feature = "cargo-clippy", allow(zero_prefixed_literal))]
// Blacklisted Rust lints.
#![deny(missing_docs, unused_imports)]