Auto merge of #6786 - smoelius:move-conf-rs-back-into-clippy-lints, r=flip1995
Move conf.rs back into clippy_lints This is an alternative solution to #6785 to fix the CI break caused by #6756. changelog: none
This commit is contained in:
commit
454515040a
4 changed files with 2 additions and 2 deletions
|
|
@ -4,6 +4,7 @@
|
|||
#![feature(box_syntax)]
|
||||
#![feature(drain_filter)]
|
||||
#![feature(in_band_lifetimes)]
|
||||
#![feature(once_cell)]
|
||||
#![feature(or_patterns)]
|
||||
#![feature(rustc_private)]
|
||||
#![feature(stmt_expr_attributes)]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
pub mod author;
|
||||
pub mod conf;
|
||||
pub mod inspector;
|
||||
#[cfg(feature = "internal-lints")]
|
||||
pub mod internal_lints;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
#![feature(box_patterns)]
|
||||
#![feature(in_band_lifetimes)]
|
||||
#![feature(once_cell)]
|
||||
#![feature(or_patterns)]
|
||||
#![feature(rustc_private)]
|
||||
#![recursion_limit = "512"]
|
||||
|
|
@ -32,7 +31,6 @@ pub mod ast_utils;
|
|||
pub mod attrs;
|
||||
pub mod camel_case;
|
||||
pub mod comparisons;
|
||||
pub mod conf;
|
||||
pub mod consts;
|
||||
mod diagnostics;
|
||||
pub mod eager_or_lazy;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue