From 778b821797dd26c2122d9cc14d3f3e5a0dfa9c18 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 12 Sep 2016 16:48:56 +1200 Subject: [PATCH] Improved CodeClimate excludes Exclude lang folders, make other includes less verbose by using globs, see https://docs.codeclimate.com/docs/excluding-files-and-folders --- .codeclimate.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 982301eab..bab67058e 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -14,9 +14,6 @@ ratings: - client/src/** - admin/client/src/** exclude_paths: -- "client/dist/**" -- "admin/client/dist/**" -- "admin/thirdparty/**" -- "templates/" -- "tests/" -- "thirdparty/" +- "**/*" +- "!client/src/**" +- "!admin/client/src/**"