From 8544c87cfd6a2d25fa0ee02e829f4ef96d629517 Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Wed, 11 Jun 2025 17:19:51 +0530 Subject: [PATCH] Update .codeclimate.yml --- .codeclimate.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index dd9b6349f..a5947c16a 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -20,6 +20,8 @@ checks: threshold: 32 exclude_paths: - 'app/javascript/dashboard/composables/' + - 'app/javascript/dashboard/composables/**' + - 'app/javascript/dashboard/composables/*.js' file-lines: enabled: true config: @@ -30,12 +32,16 @@ checks: threshold: 50 exclude_paths: - 'app/javascript/dashboard/composables/' + - 'app/javascript/dashboard/composables/**' + - 'app/javascript/dashboard/composables/*.js' cognitive-complexity: enabled: true config: threshold: 5 exclude_paths: - 'app/javascript/dashboard/composables/' + - 'app/javascript/dashboard/composables/**' + - 'app/javascript/dashboard/composables/*.js' exclude_patterns: - 'spec/' - '**/specs/**/**'