Allow `unreadable_literal` lint.

This commit is contained in:
Sean Bowe 2017-08-01 11:37:51 -06:00
parent ca5efdcebe
commit 766c902d8c
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![cfg_attr(feature = "clippy", allow(inline_always))]
#![cfg_attr(feature = "clippy", allow(too_many_arguments))]
#![cfg_attr(feature = "clippy", allow(unreadable_literal))]
// The compiler provides `test` (on nightly) for benchmarking tools, but
// it's hidden behind a feature flag. Enable it if we're testing.