Reports constructing ranges of collection indices manually instead of using .indices.

Example:


  var x: Seq[Int]
  Range(0, x.size)
  0 until x.size
  0.to(x.size - 1)

After the quick-fix is applied:


  var x: Seq[Int]
  x.indices