Hi, what is the equivalent of CheckStyle for Kotli...
# android
a
Hi, what is the equivalent of CheckStyle for Kotlin https://checkstyle.org/index.html
p
https://detekt.github.io/detekt/ https://ktlint.github.io Are the most comming linting tools, I’d reckon. ktlint is mostly styling while detekt does some analysis. I think you can combine the two as well.
e
you can combine them, either by using both or enabling detekt's formatting ruleset which uses ktlint
both also have channels here, #detekt #ktlint
a
Thanks guys, I’ll check these