In my Android Studio app project, I've integrated ktlint gradle.
Is it possible to configure the ktlint gradle plugin, so that it runs continuously on the fly (while coding on the keyboard)?? Like ESlint is used for JS, it warns me immediately if any lint warnings occur..
It is not possible to do that. klint is not a static analysis tool.
Alternatively, you can write custom lint rules for the same. Here are some resources for doing so: