Hi all, in our project we defined warnings as errors. But now we had to raise the version of a third party library which is heavily used in our project. The library deprecated some classes which are used in ~50 files of our project. We're not ready to replace the deprecated classes yet but we want to continue to use them. For that I have to add
@file:Suppress("DEPRECATION")
in each of the ~50 files.
Is there a better way to say DEPRECATIONs should be ignored at all or even better to say that I want to ignore some special deprecated warnings?