suppressObviousFunctions

@Input
val suppressObviousFunctions: Property<Boolean>

Whether to suppress obvious functions.

A function is considered to be obvious if it is:

  • Inherited from kotlin.Any, Kotlin.Enum, java.lang.Object or java.lang.Enum, such as equals, hashCode, toString.

  • Synthetic (generated by the compiler) and does not have any documentation, such as dataClass.componentN or dataClass.copy.

Default is true