Reports manual zipping of the index instead of using zipWithIndex.

Example:


  var seq: Seq[Int]
  seq.zip(seq.indices)

After the quick-fix is applied:


  var seq: Seq[Int]
  seq.zipWithIndex