### What it does
Checks for possible missing comma in an array. It lints if
an array element is a binary operator expression and it lies on two lines.

### Why is this bad?
This could lead to unexpected results.

### Example
```
let a = &[
    -1, -2, -3 // <= no comma here
    -4, -5, -6
];
```