2016-08-17 04:36:04 -05:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
2017-05-17 07:19:44 -05:00
|
|
|
#![warn(useless_attribute)]
|
2016-08-17 04:36:04 -05:00
|
|
|
|
2017-08-28 11:16:16 -05:00
|
|
|
#[allow(dead_code, unused_extern_crates)]
|
2016-08-17 04:36:04 -05:00
|
|
|
extern crate clippy_lints;
|
|
|
|
|
2016-08-19 10:31:14 -05:00
|
|
|
// don't lint on unused_import for `use` items
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::collections;
|
|
|
|
|
2016-12-01 15:36:35 -06:00
|
|
|
// don't lint on deprecated for `use` items
|
|
|
|
mod foo { #[deprecated] pub struct Bar; }
|
|
|
|
#[allow(deprecated)]
|
|
|
|
pub use foo::Bar;
|
|
|
|
|
2016-08-17 04:36:04 -05:00
|
|
|
fn main() {}
|