2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::useless_attribute)]
|
2016-08-17 11:36:04 +02:00
|
|
|
|
2018-09-15 09:56:03 +02:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
|
2018-12-11 00:59:59 +01:00
|
|
|
#[rustfmt::skip]
|
|
|
|
#[cfg_attr(feature = "cargo-clippy",
|
|
|
|
allow(dead_code))]
|
2018-07-19 13:44:26 +02:00
|
|
|
#[allow(unused_imports)]
|
2018-09-15 09:56:03 +02:00
|
|
|
#[allow(unused_extern_crates)]
|
2018-07-19 13:44:26 +02:00
|
|
|
#[macro_use]
|
2016-08-17 11:36:04 +02:00
|
|
|
extern crate clippy_lints;
|
|
|
|
|
2016-08-19 17:31:14 +02:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2016-12-01 22:36:35 +01:00
|
|
|
// don't lint on deprecated for `use` items
|
2018-12-09 23:26:16 +01:00
|
|
|
mod foo {
|
|
|
|
#[deprecated]
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
2016-12-01 22:36:35 +01:00
|
|
|
#[allow(deprecated)]
|
|
|
|
pub use foo::Bar;
|
|
|
|
|
2016-08-17 11:36:04 +02:00
|
|
|
fn main() {}
|