Files
kompendium/detekt.yml
Ryan Brink c29567114d feat: v2-alpha (#112)
There are still some bugs, still some outstanding features, but I don't want to hold this back any longer, that way I can keep the future PRs much more focused
2022-01-03 04:15:15 +00:00

26 lines
512 B
YAML

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