Question, what is the difference in detekt between...
# detekt
s
Question, what is the difference in detekt between filters and excludes?
Copy code
filters = ".*build.*,.*/resources/"
excludes = ["**/build/**", "**/resources/**"]
s
The filters concept got deprecated and removed with RC15. It got replaced by the new excludes and includes options.
👍 2