### What it does
Checks for usage of dbg!() macro.

### Why is this bad?
`dbg!` macro is intended as a debugging tool. It
should not be in version control.

### Example
```
dbg!(true)
```

Use instead:
```
true
```