Files
kompendium/detekt.yml
2022-08-13 12:59:59 -04:00

24 lines
492 B
YAML

complexity:
TooManyFunctions:
active: false
LongParameterList:
active: true
functionThreshold: 10
constructorThreshold: 15
ComplexMethod:
threshold: 20
style:
MaxLineLength:
excludes: ['**/test/**/*']
active: true
maxLineLength: 120
excludeCommentStatements: true
MagicNumber:
excludes: ['**/kompendium-playground/**/*', '**/test/**/*']
naming:
ConstructorParameterNaming:
active: false
performance:
SpreadOperator:
active: false