Consider the following code:
let x = 50; x -+ 50;
The second line is useless because it does nothing. In fact, this line was supposed to be x -= 50;
x -= 50;
Is there any rule in eslint to spot this kind of line?