Files
kompendium/detekt.yml
2024-01-21 14:15:21 -05:00

33 lines
662 B
YAML

complexity:
TooManyFunctions:
active: false
LongParameterList:
active: true
functionThreshold: 10
constructorThreshold: 15
CyclomaticComplexMethod:
threshold: 15
style:
MaxLineLength:
excludes: ['**/test/**/*']
active: true
maxLineLength: 120
excludeCommentStatements: true
MagicNumber:
excludes: ['**/kompendium-playground/**/*', '**/test/**/*']
ForbiddenMethodCall:
active: true
formatting:
Indentation:
indentSize: 2
ImportOrdering:
active: false
EnumEntryNameCase:
active: false
naming:
ConstructorParameterNaming:
active: false
performance:
SpreadOperator:
active: false