I'm confused, detekt is failing on `java.util.*` i...
# detekt
c
I'm confused, detekt is failing on
java.util.*
import. I even explicitely checked that I have this in my detekt.yml
Copy code
style:
  WildcardImport:
    active: true
    excludes: "**/test/**,**/androidTest/**,**/*.Test.kt,**/*.Spec.kt,**/*.Spek.kt"
    excludeImports: 'java.util.*,kotlinx.android.synthetic.*'
I know this is default, but since it was failing I also added it to my own config. This is relevant part of `build.gradle.kts`:
Copy code
subprojects {
	project.detekt {
		config = files("${rootProject.projectDir}/detekt.yml")
		buildUponDefaultConfig = true
	}
}
The only way to circumvent this problem I've found is to disable the check completely:
Copy code
formatting:
  NoWildcardImports:
    active: false
which I don't want to do.