1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-12-29 12:34:19 +01:00

add dbg_macro check

This commit is contained in:
Jonathan de Jong 2021-05-05 16:14:49 +00:00
parent bd16850fd4
commit 268ad3441c
2 changed files with 3 additions and 0 deletions

View file

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

View file

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