Move deny lint checks to script
Signed-off-by: Harshil Jani <harshiljani2002@gmail.com>
This commit is contained in:
parent
c8e256718b
commit
a1c3082319
|
@ -36,14 +36,7 @@
|
||||||
#![cfg_attr(bench, feature(test))]
|
#![cfg_attr(bench, feature(test))]
|
||||||
#![cfg_attr(docsrs, feature(doc_cfg))]
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
// Coding conventions
|
// Coding conventions
|
||||||
#![deny(non_upper_case_globals)]
|
#![warn(missing_docs)]
|
||||||
#![deny(non_camel_case_types)]
|
|
||||||
#![deny(non_snake_case)]
|
|
||||||
#![deny(unused_mut)]
|
|
||||||
#![deny(dead_code)]
|
|
||||||
#![deny(unused_imports)]
|
|
||||||
#![deny(missing_docs)]
|
|
||||||
#![deny(unused_must_use)]
|
|
||||||
|
|
||||||
// Instead of littering the codebase for non-fuzzing code just globally allow.
|
// Instead of littering the codebase for non-fuzzing code just globally allow.
|
||||||
#![cfg_attr(fuzzing, allow(dead_code, unused_imports))]
|
#![cfg_attr(fuzzing, allow(dead_code, unused_imports))]
|
||||||
|
|
|
@ -78,11 +78,7 @@
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
// Coding conventions
|
// Coding conventions
|
||||||
#![deny(non_upper_case_globals)]
|
#![warn(missing_docs)]
|
||||||
#![deny(non_camel_case_types)]
|
|
||||||
#![deny(non_snake_case)]
|
|
||||||
#![deny(unused_mut)]
|
|
||||||
#![deny(missing_docs)]
|
|
||||||
|
|
||||||
// Experimental features we need.
|
// Experimental features we need.
|
||||||
#![cfg_attr(docsrs, feature(doc_cfg))]
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
|
|
|
@ -11,14 +11,7 @@
|
||||||
// Experimental features we need.
|
// Experimental features we need.
|
||||||
#![cfg_attr(docsrs, feature(doc_cfg))]
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
// Coding conventions
|
// Coding conventions
|
||||||
#![deny(non_upper_case_globals)]
|
#![warn(missing_docs)]
|
||||||
#![deny(non_camel_case_types)]
|
|
||||||
#![deny(non_snake_case)]
|
|
||||||
#![deny(unused_mut)]
|
|
||||||
#![deny(dead_code)]
|
|
||||||
#![deny(unused_imports)]
|
|
||||||
#![deny(missing_docs)]
|
|
||||||
#![deny(unused_must_use)]
|
|
||||||
|
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
|
Loading…
Reference in New Issue