mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Remove clippy deny attributes from test suite
These were superseded by the clippy invocation made in our CI workflow: run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic
This commit is contained in:
parent
625d349ffb
commit
dd9206cfd0
10 changed files with 0 additions and 16 deletions
|
@ -1,5 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
#[rustversion::attr(not(nightly), ignore)]
|
||||
#[cfg_attr(miri, ignore)]
|
||||
#[test]
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
use std::fmt::Display;
|
||||
use thiserror::Error;
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
#![allow(dead_code)]
|
||||
|
||||
use std::fmt::{self, Display};
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
#![allow(clippy::iter_cloned_collect, clippy::option_if_let_else)]
|
||||
|
||||
use std::fmt::Display;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
use std::io;
|
||||
use thiserror::Error;
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
#![allow(clippy::needless_late_init)]
|
||||
|
||||
use std::fmt::{self, Debug, Display};
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#![cfg_attr(thiserror_nightly_testing, feature(backtrace))]
|
||||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
#[cfg(thiserror_nightly_testing)]
|
||||
pub mod structs {
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
use ref_cast::RefCast;
|
||||
use std::fmt::Display;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
use std::error::Error as StdError;
|
||||
use std::io;
|
||||
use thiserror::Error;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![deny(clippy::all, clippy::pedantic)]
|
||||
|
||||
use anyhow::anyhow;
|
||||
use std::error::Error as _;
|
||||
use std::io;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue