Reports condition chains where a value range is checked which could be simplified to a single check. E.g.
x > 2 && x < 4
could be simplified to
x == 3
or
arr.length == 0 || arr.length > 1
could be simplified to
arr.length != 1
.
New in 2019.1