JeremyStarTM
ebe2a85444
This commit reverts the following commits: -06b279e8b6
-a5a7b8841c
-bf992bf6c5
-00747f3707
-528e6ca388
-e8535cd25a
-36da65b45e
-a1e843f61e
54 lines
1,015 B
YAML
54 lines
1,015 B
YAML
# This configuration file should be used in
|
|
# conjunction with detekt's default config.
|
|
# Check the "Build rules upon the default
|
|
# configuration" setting somewhere in your
|
|
# IDE settings or pass the
|
|
# '--build-upon-default-config' argument to Detekt.
|
|
|
|
config:
|
|
validation: true
|
|
warningsAsErrors: false
|
|
|
|
console-reports:
|
|
active: true
|
|
|
|
build:
|
|
maxIssues: 10
|
|
|
|
complexity:
|
|
TooManyFunctions:
|
|
active: false
|
|
NestedBlockDepth:
|
|
threshold: 6
|
|
ComplexCondition:
|
|
active: false
|
|
LongParameterList:
|
|
active: false
|
|
|
|
naming:
|
|
MemberNameEqualsClassName:
|
|
active: false
|
|
|
|
exceptions:
|
|
SwallowedException:
|
|
active: false
|
|
TooGenericExceptionThrown:
|
|
active: false
|
|
TooGenericExceptionCaught:
|
|
active: false
|
|
ThrowingExceptionsWithoutMessageOrCause:
|
|
active: false
|
|
|
|
style:
|
|
MaxLineLength:
|
|
active: false
|
|
UnusedPrivateMember:
|
|
active: false
|
|
UnusedParameter:
|
|
active: false
|
|
ReturnCount:
|
|
active: false
|
|
WildcardImport:
|
|
active: false
|
|
MagicNumber:
|
|
active: false
|