From dd14915209ee5d19fdb2d45845bf4d4f8498064e Mon Sep 17 00:00:00 2001 From: Pau Perez Date: Thu, 3 May 2018 13:56:19 +0200 Subject: [PATCH] Exclude shared JS libs from CodeClimate CodeClimate is raising issues from code that we don't own and won't touch thus, causing false negatives. --- .codeclimate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index c126a85843..4e8512dd15 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -34,3 +34,4 @@ checks: exclude_patterns: - "spec/**/*" - "vendor/**/*" +- "app/assets/javascripts/shared/*"