is there a way to enforce ktlint checks in gradle ...
# getting-started
m
is there a way to enforce ktlint checks in gradle build? eg. I run build or tests, and it fails because style isn't correct
e
Copy code
tasks.check {
    dependsOn("lintKotlin")
}
or whatever the tasks you want to tie together are called
m
amazing, can't believe its impossible to find this on google 😅
thank you!