mirror of
https://github.com/jlengrand/detekt.git
synced 2026-03-10 08:11:23 +00:00
* Prepare changelog * Update versions to 1.0.0 * Fix testcase to use the new default configuration file * Update comparison script to contain more projects and be compatible with detekt > RC15 * Write a news article for 1.0 * Correct spelling * Introduce detekt before enumerate metrics * Checkin forgotten "any" function documentation
24 lines
558 B
YAML
24 lines
558 B
YAML
build:
|
|
# analysis time is not printed on build failure
|
|
maxIssues: 9999999
|
|
|
|
processors:
|
|
active: true
|
|
exclude:
|
|
# IntelliJ terminal scrolls to much to the right
|
|
- 'DetektProgressListener'
|
|
|
|
console-reports:
|
|
active: true
|
|
exclude:
|
|
# we do not have everything correctly configured
|
|
# though there may be too many findings in a project
|
|
# we just look at the diff and manually watch the generated txt report
|
|
- 'FindingsReport'
|
|
|
|
# not so interesting findings and easy to spot a failure in the rule
|
|
style:
|
|
MaxLineLength:
|
|
active: false
|
|
|