Is there an API I can use to determine what proper...
# compiler
e
Is there an API I can use to determine what properties/functions are unused in a given set of classes in my project (without using the IDE)?
t
Detekt may be helpful here? It uses a compiler plugin to find unused functions/properties among other things
e
Those checks only run for private members, etc...
t
ah yes, maybe you could extend the rule and use it in a custom one