mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-13 22:12:49 +01:00
20 lines
461 B
YAML
20 lines
461 B
YAML
|
naming:
|
||
|
FunctionNaming:
|
||
|
functionPattern: '[a-z][a-zA-Z0-9]*'
|
||
|
ignoreAnnotated: [ 'Composable' ]
|
||
|
TopLevelPropertyNaming:
|
||
|
constantPattern: '[A-Z][A-Za-z0-9]*'
|
||
|
|
||
|
complexity:
|
||
|
LongParameterList:
|
||
|
functionThreshold: 6
|
||
|
constructorThreshold: 7
|
||
|
ignoreDefaultParameters: true
|
||
|
|
||
|
style:
|
||
|
MagicNumber:
|
||
|
ignorePropertyDeclaration: true
|
||
|
ignoreCompanionObjectPropertyDeclaration: true
|
||
|
UnusedPrivateMember:
|
||
|
ignoreAnnotated: [ 'Preview' ]
|