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

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

### Example
```
iter.filter_map(|x| x);
```
Use instead:
```
iter.flatten();
```