Is there a way to find all “by” declarations, i.e....
# konsist
c
Is there a way to find all “by” declarations, i.e. usages of Kotlin Delegation to implement interfaces like in this code?
Copy code
class MyViewModel(
    delegate: MyDelegate,
) : MyDelegate by delegate
I would like to assert on a common naming scheme there.