### What it does
Checks for usage of `flat_map(|x| x)`.

### Why is this bad?
Readability, this can be written more concisely by using `flatten`.

### Example
```
iter.flat_map(|x| x);
```
Can be written as
```
iter.flatten();
```