I got a compiler error from this: ``` allprojects ...
# gradle
j
I got a compiler error from this:
Copy code
allprojects {
    afterEvaluate {
        tasks.all {
            if (it.name == "check") { // This line here
                it.dependsOn(ktLintCheckTask)
            }
        }
    }
}