Revert "Ignore buggy nonstandard_macro_braces clippy lint"

This reverts commit 4bbe3ece51.
This commit is contained in:
David Tolnay 2021-09-04 12:41:36 -07:00
parent b47c75d3f5
commit e96e0d57d7
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
8 changed files with 1 additions and 34 deletions

View file

@ -1,8 +1,4 @@
#![cfg_attr(thiserror_nightly_testing, feature(backtrace))]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use thiserror::Error;

View file

@ -1,8 +1,4 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use std::fmt::Display;
use thiserror::Error;

View file

@ -1,9 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
clippy::option_if_let_else,
)]
#![allow(clippy::option_if_let_else)]
use std::fmt::Display;
use thiserror::Error;

View file

@ -1,8 +1,4 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use std::io;
use thiserror::Error;

View file

@ -1,8 +1,3 @@
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use thiserror::Error;
pub use std::error::Error;

View file

@ -1,8 +1,4 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use ref_cast::RefCast;
use std::fmt::Display;

View file

@ -1,8 +1,4 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use std::error::Error as StdError;
use std::io;

View file

@ -1,8 +1,4 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(
// Clippy bug: https://github.com/rust-lang/rust-clippy/issues/7422
clippy::nonstandard_macro_braces,
)]
use anyhow::anyhow;
use std::error::Error as _;