diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2019-04-05 12:58:38 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2019-04-05 12:59:19 +0900 |
commit | a7371430c5a4dea0048d913d6144c01557d60097 (patch) | |
tree | 1f65cc853ee0423ff4767777ef88a5f97b8bb37d | |
parent | a11ca2ff76d3e1b845282e784c3970b2ebaffd89 (diff) | |
download | rails-a7371430c5a4dea0048d913d6144c01557d60097.tar.gz rails-a7371430c5a4dea0048d913d6144c01557d60097.tar.bz2 rails-a7371430c5a4dea0048d913d6144c01557d60097.zip |
Do not exclude paths in the global level of Code Climate
We use only RuboCop in Code Climate and exclude paths are specified in
RuboCop's setting.
The global level excludes paths should not be specified to match the
behavior of local and CodeClimate.
-rw-r--r-- | .codeclimate.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.codeclimate.yml b/.codeclimate.yml index 3c6e743df6..b8bebe4d42 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -28,9 +28,3 @@ engines: ratings: paths: - "**.rb" - -exclude_paths: - - ci/ - - guides/ - - tasks/ - - tools/ |