Is it possible to configure ktlint with CI so it r...
# ktlint
m
Is it possible to configure ktlint with CI so it runs only for changed files?
t
ktlint-gradle
+ remote build cache
theoretically you could also try to get changed files via
git diff
against
master
branch and run ktlint only over this files
m
Sounds like an option, thanks