From f49c71ddfa6efaf6e116ea4ac6103972b3c13ab4 Mon Sep 17 00:00:00 2001 From: Erick Guan Date: Sat, 16 May 2015 10:47:37 +0800 Subject: [PATCH] DEV: exclude the script folder from code climate --- .codeclimate.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 000000000..eb8afa75b --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,12 @@ +languages: + Ruby: true + JavaScript: true + Python: false + PHP: false + +exclude_paths: + - "public/*" + - "script/*" + - "spec/*" + - "test/*" + - "vendor/*"