Disable clippy lint use_self for ruma-events-macros
This commit is contained in:
parent
2dd9ddd4e8
commit
cb4bddf60a
@ -2,7 +2,6 @@
|
|||||||
//! [ruma-events](https://github.com/ruma/ruma-events) events.
|
//! [ruma-events](https://github.com/ruma/ruma-events) events.
|
||||||
//!
|
//!
|
||||||
//! See the documentation for the `ruma_event!` macro for usage details.
|
//! See the documentation for the `ruma_event!` macro for usage details.
|
||||||
//!
|
|
||||||
#![deny(
|
#![deny(
|
||||||
missing_copy_implementations,
|
missing_copy_implementations,
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
@ -28,6 +27,8 @@
|
|||||||
clippy::wrong_pub_self_convention,
|
clippy::wrong_pub_self_convention,
|
||||||
clippy::wrong_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"]
|
#![recursion_limit = "128"]
|
||||||
|
|
||||||
extern crate proc_macro;
|
extern crate proc_macro;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user