diff --git a/clippy_lints/src/utils/conf.rs b/clippy_lints/src/utils/conf.rs index a27013344d8..c1ac058a83e 100644 --- a/clippy_lints/src/utils/conf.rs +++ b/clippy_lints/src/utils/conf.rs @@ -77,15 +77,6 @@ lazy_static! { macro_rules! define_Conf { ($(#[$doc: meta] ($rust_name: ident, $rust_name_str: expr, $default: expr => $($ty: tt)+),)+) => { pub use self::helpers::Conf; - // FIXME(mati865): remove #[allow(rust_2018_idioms)] when it's fixed: - // - // warning: `extern crate` is not idiomatic in the new edition - // --> src/utils/conf.rs:82:22 - // | - // 82 | #[derive(Deserialize)] - // | ^^^^^^^^^^^ help: convert it to a `use` - // - #[allow(rust_2018_idioms)] mod helpers { use serde_derive::Deserialize; /// Type used to store lint configuration.