Hello there! Quick question: is there a way to dis...
# detekt
j
Hello there! Quick question: is there a way to disable logs printed by detekt when running the gradle task? I tried to add the following config to the yaml file but still getting the logs.
Copy code
processors:
  active: true
  exclude:
    - 'DetektProgressListener'
    - 'FunctionCountProcessor'
    - 'PropertyCountProcessor'
    - 'ClassCountProcessor'
    - 'PackageCountProcessor'
    - 'KtFileCountProcessor'

console-reports:
  active: true
  exclude:
    - 'ProjectStatisticsReport'
    - 'ComplexityReport'
    - 'NotificationReport'
    - 'FindingsReport'
    - 'BuildFailureReport'
Thanks a lot 🙂