chore: Allow unknown clippy lints

same_item_push was added on nightly, but is currently throwing
a false negative. I added an allow for it, but this causes a
warning on stable for an unknown lints, so allow unknown lints for
now.
This commit is contained in:
Mike Welsh 2020-08-12 23:51:12 -07:00
parent 6c89869210
commit cbd448522a
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,8 @@
#![allow(clippy::unneeded_field_pattern, clippy::same_item_push)] #![allow(
clippy::unneeded_field_pattern,
clippy::same_item_push,
clippy::unknown_clippy_lints
)]
#[macro_use] #[macro_use]
mod display_object; mod display_object;

View File

@ -1,4 +1,4 @@
#![allow(clippy::same_item_push)] #![allow(clippy::same_item_push, clippy::unknown_clippy_lints)]
//! Ruffle web frontend. //! Ruffle web frontend.
mod audio; mod audio;