Is there a way to supress some types of warnings f...
# announcements
a
Is there a way to supress some types of warnings for whole project instead of specifying them in each file seperately? I want to supress
MemberVisibilityCanBePrivate
and
unused
Im currently doing that by putting this in every file:
Copy code
@file:Suppress("MemberVisibilityCanBePrivate", "unused")
Is there any way to do this, like we do for experimental apis and opt-ins using gradle compilation args or something.