Data classes have autogenerated implementations of `equals`, `hashcode`, `toString`, `copy` and `componentN`. Although the former three methods can still be overridden, there is no use to do so if no special logic is required. The latter two methods cannot be overridden and cause a compile-time error if attempted.
This rule reports an issue on simple `equals` and `hashCode` implementations with no additional logic beyond the default behaviour.