Browse Source

Allow `unreadable_literal` lint.

master
Sean Bowe 7 years ago
parent
commit
766c902d8c
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
  1. 1
      src/lib.rs

1
src/lib.rs

@ -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.

Loading…
Cancel
Save