And this is my configuration: ``` detekt { ...
# detekt
d
And this is my configuration:
Copy code
detekt {
        parallel = true
        failFast = true
        buildUponDefaultConfig = true
        config = files("$rootDir/detekt.yml")
        def baselineFile = file("$projectDir/detekt-baseline.xml")
        if (baselineFile.exists()) {
            baseline = baselineFile
        }

        reports {
            html.enabled = true
            xml.enabled = true
            txt.enabled = false
        }
    }