From 6b7fc48230823fbf104cc8e8f68ff524751b9210 Mon Sep 17 00:00:00 2001 From: alperozturk Date: Thu, 29 Feb 2024 15:46:19 +0100 Subject: [PATCH] Add Composable function naming convention Signed-off-by: alperozturk --- app/detekt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/detekt.yml b/app/detekt.yml index 5e9aad61c9..91280a3a92 100644 --- a/app/detekt.yml +++ b/app/detekt.yml @@ -199,7 +199,7 @@ naming: minimumFunctionNameLength: 3 FunctionNaming: active: true - functionPattern: '^([a-z$][a-zA-Z$0-9]*)|(`.*`)$' + functionPattern: '^([a-z$A-Z][a-zA-Z$0-9]*)|(`.*`)$' excludeClassPattern: '$^' ignoreOverridden: true excludes: