From 9c43352f5adbe083c178da5b9fc557e6d732cf99 Mon Sep 17 00:00:00 2001 From: angrezichatterbox Date: Fri, 6 Sep 2024 22:47:20 +0530 Subject: [PATCH] fix:Corrected the order of the statements --- detekt.yml | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/detekt.yml b/detekt.yml index 8a236fff..e09f04d7 100644 --- a/detekt.yml +++ b/detekt.yml @@ -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