Reports explicit checking of index bounds.

The quick-fix uses lift instead.

Example:


  var x: Seq[Int]
  if (i < x.length) Some(x(i)) else None

After the quick-fix is applied:


  var x: Seq[Int]
  x.lift(i)