From 9027fc13072c298d6cfb35dfc775662b391d75b3 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Mon, 23 May 2022 12:25:03 +0100 Subject: [PATCH] More codeclimate excludes (#1433) * more codeclimate excludes * increase similar-code & identical-code thresholds --- .codeclimate.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 301b84958..3448e2052 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -21,10 +21,10 @@ checks: # https://docs.codeclimate.com/docs/default-analysis-configuration#per-language-mass-threshold-defaults similar-code: config: - threshold: 50 + threshold: 55 identical-code: config: - threshold: 50 + threshold: 55 exclude_patterns: - 'config/' @@ -40,5 +40,9 @@ exclude_patterns: - '**/vendor/' - '**/*_test.go' - '**/*.d.ts' + - '**/@types/' + - '**/_types.*' - '**/*.stories.tsx' - '**/*.test.tsx' + - '.storybook/' + - '.jest/'