Skip to content

Commit

Permalink
Auto merge of #6786 - smoelius:move-conf-rs-back-into-clippy-lints, r…
Browse files Browse the repository at this point in the history
…=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
  • Loading branch information
bors committed Feb 24, 2021
2 parents 489c4f0 + 8047458 commit 1f77068
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions clippy_lints/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions clippy_lints/src/utils/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pub mod author;
pub mod conf;
pub mod inspector;
#[cfg(feature = "internal-lints")]
pub mod internal_lints;
Expand Down
2 changes: 0 additions & 2 deletions clippy_utils/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#![feature(box_patterns)]
#![feature(in_band_lifetimes)]
#![feature(once_cell)]
#![feature(or_patterns)]
#![feature(rustc_private)]
#![recursion_limit = "512"]
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 1f77068

Please sign in to comment.