Mkohm / detekt-hint

Detection of design principle violations in Kotlin as a plugin to detekt.
https://mkohm.github.io/detekt-hint/
80 stars 3 forks source link

add dokka config #38

Closed Mkohm closed 4 years ago

Detekt-hintBot commented 4 years ago
1 Warning
:warning: src/main/kotlin/io/github/mkohm/detekt/hint/demo/UsingInheritanceInsteadOfComposition.kt#L21 - The class Square is using inheritance, consider using composition instead.

Does Square want to expose the complete interface (setHeight, setWidth) of Rectangle such that Square can be used where Rectangle is expected? Indicates inheritance.

Does Square? want only some/part of the behavior exposed by Rectangle? Indicates Composition.

Generated by :no_entry_sign: Danger