mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Tweak detekt config
This commit is contained in:
parent
95d4df9ca8
commit
1b0bbb8440
1 changed files with 4 additions and 2 deletions
|
@ -6,9 +6,9 @@ naming:
|
||||||
constantPattern: '[A-Z][A-Za-z0-9]*'
|
constantPattern: '[A-Z][A-Za-z0-9]*'
|
||||||
|
|
||||||
complexity:
|
complexity:
|
||||||
|
LongMethod:
|
||||||
|
ignoreAnnotated: [ 'Composable' ]
|
||||||
LongParameterList:
|
LongParameterList:
|
||||||
functionThreshold: 6
|
|
||||||
constructorThreshold: 7
|
|
||||||
ignoreDefaultParameters: true
|
ignoreDefaultParameters: true
|
||||||
ignoreAnnotated: [ 'Composable' ]
|
ignoreAnnotated: [ 'Composable' ]
|
||||||
|
|
||||||
|
@ -16,5 +16,7 @@ style:
|
||||||
MagicNumber:
|
MagicNumber:
|
||||||
ignorePropertyDeclaration: true
|
ignorePropertyDeclaration: true
|
||||||
ignoreCompanionObjectPropertyDeclaration: true
|
ignoreCompanionObjectPropertyDeclaration: true
|
||||||
|
ReturnCount:
|
||||||
|
excludeGuardClauses: true
|
||||||
UnusedPrivateMember:
|
UnusedPrivateMember:
|
||||||
ignoreAnnotated: [ 'Preview' ]
|
ignoreAnnotated: [ 'Preview' ]
|
||||||
|
|
Loading…
Reference in a new issue