From af7c1549e0e11d269f34a52acdd6514d1190ba32 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Sat, 14 Mar 2020 21:03:53 -0400 Subject: [PATCH] Tweak .codeclimate.yml configuration. * Update exclude paths * Do not consider "too many lines" as a maintainability issue --- .codeclimate.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 520557c190..906c909c2a 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,7 +1,13 @@ +version: "2" # required to adjust maintainability checks languages: JavaScript: true +checks: + file-lines: + enabled: false + + exclude_paths: - - "tests/acceptance/*" - - "tests/fixtures/*" - - "tests/unit/*" + - "**/tests" + - "**/tmp" + - "**/node_modules/"