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 15a148b
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,42 @@ 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

0 comments on commit 15a148b

Please sign in to comment.