### What it does
Checks for `#[macro_use] use...`.

### Why is this bad?
Since the Rust 2018 edition you can import
macro's directly, this is considered idiomatic.

### Example
```
#[macro_use]
use some_macro;
```