Using the kotlinter gradle plugin v 4.4.1 - it's n...
# ktlint
r
Using the kotlinter gradle plugin v 4.4.1 - it's not linting build.gradle.kts or settings.gradle.kts (or indeed kts files in src/main/kotlin). Should it?
p
Your Gradle files are not inside src/main/kotlin but in the root of your project. By default kts files are scanned by ktlint. I would not expect that kotlinter deviates from that.
w
Fwiw ktlint-gradle does lint your gradle kts files
r
Thanks