I want detekt to scan my test sources too. So I ad...
# detekt
s
I want detekt to scan my test sources too. So I added
input = files("src/main/kotlin", "src/test/kotlin")
to the
detekt
closure in my
build.gradle
but when I run gradle I get the error:
Copy code
Exception in thread "main" com.beust.jcommander.ParameterException: Provided path '/Users/boris/dev/project/src/main/kotlin:/Users/boris/dev/project/src/test/kotlin' does not exist!
It works fine when I remove
"src/test/kotlin"
.