mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-06 18:57:26 +01:00
25 lines
600 B
YAML
25 lines
600 B
YAML
naming:
|
|
FunctionNaming:
|
|
functionPattern: '[a-z][a-zA-Z0-9]*'
|
|
ignoreAnnotated: [ 'Composable' ]
|
|
TopLevelPropertyNaming:
|
|
constantPattern: '[A-Z][A-Za-z0-9]*'
|
|
|
|
complexity:
|
|
LongMethod:
|
|
ignoreAnnotated: [ 'Composable' ]
|
|
LongParameterList:
|
|
ignoreDefaultParameters: true
|
|
ignoreAnnotated: [ 'Composable' ]
|
|
|
|
style:
|
|
MagicNumber:
|
|
ignorePropertyDeclaration: true
|
|
ignoreCompanionObjectPropertyDeclaration: true
|
|
ReturnCount:
|
|
excludeGuardClauses: true
|
|
SerialVersionUIDInSerializableClass:
|
|
active: false
|
|
UnusedPrivateMember:
|
|
ignoreAnnotated: [ 'Preview' ]
|