mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 17:35:54 +03:00
79 lines
1.5 KiB
YAML
79 lines
1.5 KiB
YAML
# Default rules: https://github.com/detekt/detekt/blob/main/detekt-core/src/main/resources/default-detekt-config.yml
|
|
|
|
style:
|
|
MaxLineLength:
|
|
# Default is 120
|
|
maxLineLength: 160
|
|
MagicNumber:
|
|
active: false
|
|
ReturnCount:
|
|
active: false
|
|
UnnecessaryAbstractClass:
|
|
active: false
|
|
FunctionOnlyReturningConstant:
|
|
active: false
|
|
UnusedPrivateMember:
|
|
# TODO Enable it
|
|
active: false
|
|
ThrowsCount:
|
|
active: false
|
|
LoopWithTooManyJumpStatements:
|
|
active: false
|
|
SerialVersionUIDInSerializableClass:
|
|
active: false
|
|
ProtectedMemberInFinalClass:
|
|
active: false
|
|
|
|
empty-blocks:
|
|
EmptyFunctionBlock:
|
|
active: false
|
|
EmptySecondaryConstructor:
|
|
active: false
|
|
|
|
potential-bugs:
|
|
ImplicitDefaultLocale:
|
|
active: false
|
|
|
|
exceptions:
|
|
TooGenericExceptionCaught:
|
|
active: false
|
|
SwallowedException:
|
|
active: false
|
|
ThrowingExceptionsWithoutMessageOrCause:
|
|
active: false
|
|
TooGenericExceptionThrown:
|
|
active: false
|
|
|
|
complexity:
|
|
TooManyFunctions:
|
|
active: false
|
|
LongMethod:
|
|
active: false
|
|
LongParameterList:
|
|
active: false
|
|
ComplexMethod:
|
|
active: false
|
|
NestedBlockDepth:
|
|
active: false
|
|
ComplexCondition:
|
|
active: false
|
|
LargeClass:
|
|
active: false
|
|
|
|
naming:
|
|
FunctionParameterNaming:
|
|
# TODO Enable it
|
|
active: false
|
|
VariableNaming:
|
|
# TODO Enable it
|
|
active: false
|
|
ConstructorParameterNaming:
|
|
# TODO Enable it
|
|
active: false
|
|
TopLevelPropertyNaming:
|
|
# TODO Enable it
|
|
active: false
|
|
|
|
performance:
|
|
SpreadOperator:
|
|
active: false
|