It would be cool to add a rule which detect operators like [>](http://llewellynfalco.blogspot.com/2016/02/dont-use-greater-than-sign-in.html) or [++](https://stackoverflow.com/questions/971312/why-avoid-increment-and-decrement-operators-in-javascript) ``` // Valid if ((5 < x && x < 10)) { ... x = x + 1 ++x // Invalid if ((x > 5 && 10 > x)) { ... x++ ```