From f4aeada14b8e3cd71d0e1c8b01097cf151d4a98f Mon Sep 17 00:00:00 2001 From: Aaron Wentzel <16669785+awentzel@users.noreply.github.com> Date: Mon, 9 Apr 2018 10:20:41 -0700 Subject: [PATCH] update to codeclimate configuration to exclude tests and specs (#226) --- .codeclimate.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 1ab160109..ed1b3dffa 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -50,4 +50,10 @@ exclude_patterns: - "**/dist/" - "**/www/" - "**/node_modules/" -- "**/*.d.ts" \ No newline at end of file +- "**/*.d.ts" +- "**/__tests__/" +- "**/__snapshots__/" +- "**/*.spec.ts" +- "**/*.spec.tsx" +- "**/*.test.ts" +- "**/*.test.tsx" \ No newline at end of file