aboutsummaryrefslogtreecommitdiffstats
path: root/.codeclimate.yml
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2019-04-13 12:36:32 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2019-04-13 12:51:31 +0900
commit3b9a857e4d8f249c2c8b09547efba123545243cf (patch)
tree21f8d63e2c14a4e20027a4d941f9fbff02acbbaa /.codeclimate.yml
parentcc6bff3daa4da4d2c6935761d0ab059201f772e2 (diff)
downloadrails-3b9a857e4d8f249c2c8b09547efba123545243cf.tar.gz
rails-3b9a857e4d8f249c2c8b09547efba123545243cf.tar.bz2
rails-3b9a857e4d8f249c2c8b09547efba123545243cf.zip
Fix Code Climate exclude patterns config
I removed `exclude_paths` by a737143. But I had mistaken that exclude paths would not be used if removed `exclude_paths` config. However, in the absence of `exclude_paths`, the default setting used and it contains `test`. https://docs.codeclimate.com/docs/advanced-configuration#section-exclude-patterns https://docs.codeclimate.com/docs/excluding-files-and-folders#section-auto-generated-file-and-folder-exclusions As we need to target the tests, specify an empty array to prevent the default from being used.
Diffstat (limited to '.codeclimate.yml')
-rw-r--r--.codeclimate.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.codeclimate.yml b/.codeclimate.yml
index b8bebe4d42..ab4fcd123d 100644
--- a/.codeclimate.yml
+++ b/.codeclimate.yml
@@ -28,3 +28,5 @@ engines:
ratings:
paths:
- "**.rb"
+
+exclude_paths: []