Try to catch clippy::pedantic violations in generated code

This commit is contained in:
David Tolnay 2020-05-21 18:35:37 -07:00
parent 3e48c540f6
commit 21b5dabc25
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
10 changed files with 17 additions and 1 deletions

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
#[rustversion::attr(not(nightly), ignore)]
#[test]
fn ui() {

View file

@ -1,4 +1,4 @@
#![deny(deprecated)]
#![deny(deprecated, clippy::all, clippy::pedantic)]
use thiserror::Error;

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
use std::fmt::Display;
use thiserror::Error;

View file

@ -1,3 +1,4 @@
#![deny(clippy::all, clippy::pedantic)]
#![allow(dead_code)]
use std::fmt::{self, Display};

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
use std::fmt::Display;
use thiserror::Error;

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
use std::io;
use thiserror::Error;

View file

@ -1,4 +1,5 @@
#![cfg_attr(thiserror_nightly_testing, feature(backtrace))]
#![deny(clippy::all, clippy::pedantic)]
#[cfg(thiserror_nightly_testing)]
pub mod structs {

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
use ref_cast::RefCast;
use std::fmt::Display;
use std::path::{Path, PathBuf};

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
use std::error::Error as StdError;
use std::io;
use thiserror::Error;

View file

@ -1,3 +1,5 @@
#![deny(clippy::all, clippy::pedantic)]
use anyhow::anyhow;
use std::error::Error as _;
use std::io;