Ignore buggy nonstandard_macro_braces clippy lint

This commit is contained in:
Waffle 2021-07-04 00:22:11 +03:00
parent e40d0e7edf
commit 39e0ee094a
2 changed files with 5 additions and 0 deletions

View file

@ -55,6 +55,8 @@
// ```
#![cfg_attr(all(docsrs, feature = "nightly"), feature(doc_cfg))]
#![allow(clippy::redundant_pattern_matching)]
// https://github.com/rust-lang/rust-clippy/issues/7422
#![allow(clippy::nonstandard_macro_braces)]
pub use dispatching::repls::{
commands_repl, commands_repl_with_listener, dialogues_repl, dialogues_repl_with_listener, repl,

View file

@ -1,3 +1,6 @@
// https://github.com/rust-lang/rust-clippy/issues/7422
#![allow(clippy::nonstandard_macro_braces)]
#[cfg(feature = "macros")]
use teloxide::utils::command::{BotCommand, ParseError};