find と空チェックの使用を報告し、exists を代わりに使用することを提案します。

例:


  var x: Seq[Int]
  x.find(p).isDefined
  x.find(p) != None
  x.find(p).isEmpty

クイックフィックス適用後:


  var x: Seq[Int]
  x.exists(p)
  x.exists(p)
  !x.exists(p)