mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Try to catch clippy::pedantic violations in generated code
This commit is contained in:
parent
3e48c540f6
commit
21b5dabc25
10 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
#[rustversion::attr(not(nightly), ignore)]
|
#[rustversion::attr(not(nightly), ignore)]
|
||||||
#[test]
|
#[test]
|
||||||
fn ui() {
|
fn ui() {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#![deny(deprecated)]
|
#![deny(deprecated, clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use std::fmt::Display;
|
use std::fmt::Display;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
#![allow(dead_code)]
|
#![allow(dead_code)]
|
||||||
|
|
||||||
use std::fmt::{self, Display};
|
use std::fmt::{self, Display};
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use std::fmt::Display;
|
use std::fmt::Display;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use std::io;
|
use std::io;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#![cfg_attr(thiserror_nightly_testing, feature(backtrace))]
|
#![cfg_attr(thiserror_nightly_testing, feature(backtrace))]
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
#[cfg(thiserror_nightly_testing)]
|
#[cfg(thiserror_nightly_testing)]
|
||||||
pub mod structs {
|
pub mod structs {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use ref_cast::RefCast;
|
use ref_cast::RefCast;
|
||||||
use std::fmt::Display;
|
use std::fmt::Display;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use std::error::Error as StdError;
|
use std::error::Error as StdError;
|
||||||
use std::io;
|
use std::io;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![deny(clippy::all, clippy::pedantic)]
|
||||||
|
|
||||||
use anyhow::anyhow;
|
use anyhow::anyhow;
|
||||||
use std::error::Error as _;
|
use std::error::Error as _;
|
||||||
use std::io;
|
use std::io;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue