aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYasuo Honda <yasuo.honda@gmail.com>2018-10-27 00:26:03 +0000
committerYasuo Honda <yasuo.honda@gmail.com>2018-11-08 13:06:12 +0000
commit4e9703158f9449ef2084dd4c9b761a212088d6e9 (patch)
tree334fac03b3c77dcab88a1bd9829d707f0d221b54
parent7f7e7e8b39f56d35993bec4247ac0295cd0c943e (diff)
downloadrails-4e9703158f9449ef2084dd4c9b761a212088d6e9.tar.gz
rails-4e9703158f9449ef2084dd4c9b761a212088d6e9.tar.bz2
rails-4e9703158f9449ef2084dd4c9b761a212088d6e9.zip
Use RuboCop 0.60.0 and remove exclude files for `Style/RedundantFreeze`
Since https://github.com/rubocop-hq/rubocop/pull/6333 has been included into RuboCop 0.60.0.
-rw-r--r--.codeclimate.yml2
-rw-r--r--.rubocop.yml3
2 files changed, 1 insertions, 4 deletions
diff --git a/.codeclimate.yml b/.codeclimate.yml
index 7fd35d8241..139ee8013b 100644
--- a/.codeclimate.yml
+++ b/.codeclimate.yml
@@ -23,7 +23,7 @@ checks:
engines:
rubocop:
enabled: true
- channel: rubocop-0-58
+ channel: rubocop-0-60
ratings:
paths:
diff --git a/.rubocop.yml b/.rubocop.yml
index 615a229432..033f7adf49 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -133,9 +133,6 @@ Style/FrozenStringLiteralComment:
Style/RedundantFreeze:
Enabled: true
- Exclude:
- - 'actionpack/lib/action_dispatch/journey/router/utils.rb'
- - 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb'
# Use `foo {}` not `foo{}`.
Layout/SpaceBeforeBlockBraces: