Disable clippy lint use_self for ruma-events-macros

This commit is contained in:
Jonas Platte 2019-10-23 03:05:02 +02:00
parent 2dd9ddd4e8
commit cb4bddf60a

View File

@ -2,7 +2,6 @@
//! [ruma-events](https://github.com/ruma/ruma-events) events.
//!
//! See the documentation for the `ruma_event!` macro for usage details.
//!
#![deny(
missing_copy_implementations,
missing_debug_implementations,
@ -28,6 +27,8 @@
clippy::wrong_pub_self_convention,
clippy::wrong_self_convention
)]
// Since we support Rust 1.34.2, we can't apply this suggestion yet
#![allow(clippy::use_self)]
#![recursion_limit = "128"]
extern crate proc_macro;