I'm trying to add some runtime (Android Studio) lint rules for toLowerCase/toUpperCase/capitalize etc. Similar to what's available during compilation.
For some reason IntelliJ har its own inspection for toLowerCase and toUpperCase, but it's disabled by default.
I'm able to make this work for java, but for kotlin it doesn't work. My guess is because in Kotlin toLowerCase is an inline extension function.
Has anyone been able to write a lint rule for that? I've tried both SourceCodeScanner and Detector.UastScanner. Thank you