summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Wen <jrw2175@columbia.edu>2016-01-24 00:03:22 -0500
committerJames Wen <jrw2175@columbia.edu>2016-01-26 21:34:10 -0500
commitc249ac73e6aed31921af0164eb8d1a827f8164ef (patch)
tree88f47bba597d2034bd6ce2339e5f41aa11ca702e
parentb86a9b538cca91d2c2d9e5a86efc7ebdf42a1c28 (diff)
downloadbundler-c249ac73e6aed31921af0164eb8d1a827f8164ef.tar.gz
Add .codeclimate.yml file with analysis exclusions
Excludes the following from Code Climate analysis: - Markdown docs - bundler.gemspec - SSL Certs - Vendor libraries - File Templates - Man content - Test files
-rw-r--r--.codeclimate.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.codeclimate.yml b/.codeclimate.yml
new file mode 100644
index 0000000000..7e652fa1f4
--- /dev/null
+++ b/.codeclimate.yml
@@ -0,0 +1,24 @@
+---
+engines:
+ duplication:
+ enabled: true
+ config:
+ languages:
+ - ruby
+ fixme:
+ enabled: true
+ rubocop:
+ enabled: false
+ratings:
+ paths:
+ - "**.rb"
+ - "bin/*"
+ - "exe/*"
+exclude_paths:
+- bundler.gemspec
+- "*.md"
+- lib/bundler/ssl_certs/*.pem
+- lib/bundler/vendor/**/*
+- lib/bundler/templates/**/*.tt
+- man/*
+- spec/**/*