I couldn't find this info anywhere else.
Variable shadowing is a great feature in my opinion, yet in Kotlin we get warned for it every single time, thus requiring us to use @Suppress("NAME_SHADOWING")
in every instance of it, if we wouldn't like it to warn us.
Is there a way to disable variable shadowing verifications, or suppress the warning globally?