Skip to content

Commit

Permalink
fix:Corrected the order of the statements
Browse files Browse the repository at this point in the history
  • Loading branch information
angrezichatterbox committed Sep 6, 2024
1 parent 5a95976 commit 9c43352
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,48 @@ style:
UtilityClassWithPublicConstructor:
active: false


complexity:
TooManyFunctions:
active: false
NestedBlockDepth:
active: false
ComplexCondition:
active: false
LongParameterList:
active: false
LongMethod:
active: false
CyclomaticComplexMethod:
active: false
LargeClass:
active: false

naming:
VariableNaming:
active: false
InvalidPackageDeclaration:
active: false

potential-bugs:
ImplicitDefaultLocale:
active: false

exceptions:
TooGenericExceptionCaught:
active: false
SwallowedException:
active: false
InstanceOfCheckForException:
active: false

empty-blocks:
EmptyCatchBlock:
active: false
EmptyFunctionBlock:
active: false

performance:
ForEachOnRange:
active: false
SpreadOperator:
active: false

0 comments on commit 9c43352

Please sign in to comment.