Reports missing final modifiers for case objects.
While inner case objects are effectively final in Scala, they cannot be extended, and they are not always flagged as such in the compiled bytecode. So, this inspection encourages you to do so. See best practices.
Example:
object Outer {
case object Inner
}
After the quick-fix is applied:
object Outer {
final case object Inner
}