Allow suspicious_else_formatting

This is probably unfixable because it is caused by macros
next
Rudi Floren 2021-03-04 15:26:34 +01:00
parent bd6507eafb
commit 6309506a48
2 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#![allow(clippy::suspicious_else_formatting)]
pub mod appservice_server; pub mod appservice_server;
pub mod client_server; pub mod client_server;
mod database; mod database;

View File

@ -1,4 +1,5 @@
#![warn(rust_2018_idioms)] #![warn(rust_2018_idioms)]
#![allow(clippy::suspicious_else_formatting)]
pub mod appservice_server; pub mod appservice_server;
pub mod client_server; pub mod client_server;