Is there some way to do a project wide suppression...
# getting-started
z
Is there some way to do a project wide suppression? I wanna suppress this on every single kotlin file. Maybe through intellij, or gradle?
Copy code
@file:Suppress("MISSING_DEPENDENCY_SUPERCLASS")
a
IntelliJ Settings > Editor > Inspections, or alternatively you can disable it via Alt + Enter on the warning itself
z
its not an inspection and there isn't any option to disable it