Tweak detekt config

This commit is contained in:
AntsyLich 2024-02-17 04:25:41 +06:00
parent 95d4df9ca8
commit 1b0bbb8440
No known key found for this signature in database

View file

@ -6,9 +6,9 @@ naming:
constantPattern: '[A-Z][A-Za-z0-9]*'
complexity:
LongMethod:
ignoreAnnotated: [ 'Composable' ]
LongParameterList:
functionThreshold: 6
constructorThreshold: 7
ignoreDefaultParameters: true
ignoreAnnotated: [ 'Composable' ]
@ -16,5 +16,7 @@ style:
MagicNumber:
ignorePropertyDeclaration: true
ignoreCompanionObjectPropertyDeclaration: true
ReturnCount:
excludeGuardClauses: true
UnusedPrivateMember:
ignoreAnnotated: [ 'Preview' ]