Reports manual zipping of the index instead of using zipWithIndex.
zipWithIndex
Example:
var seq: Seq[Int] seq.zip(seq.indices)
After the quick-fix is applied:
var seq: Seq[Int] seq.zipWithIndex