:wave: i have some functions that the kotlin compi...
# general-advice
d
👋 i have some functions that the kotlin compiler warns are not being used (they are not being used directly, but they are wired into various components to be used at runtime based on an annotation) is it possible to configure kotlin to not warn for unused functions if they are annotated with a certain annotation? (I know that I could just
@Suppress("unused")
but i'd love something that could ignore all functions with a given annotation)
👀 1