aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-10-01 10:08:51 +0900
committerGitHub <noreply@github.com>2018-10-01 10:08:51 +0900
commitb13a5cb83ea00d6a3d71320fd276ca21049c2544 (patch)
treef571491d2bfe23944cdda8b25ffb62cab18c6522 /.rubocop.yml
parentb707a6d0eb7a694595152c5ca18f1e72e0bc2f7e (diff)
parentaa3dcabd874a3e82e455e85a1c94a7abaac2900a (diff)
downloadrails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.tar.gz
rails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.tar.bz2
rails-b13a5cb83ea00d6a3d71320fd276ca21049c2544.zip
Merge pull request #32031 from yahonda/remove_redundant_freeze
Add `Style/RedundantFreeze` to remove redudant `.freeze`
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 2ac31637ef..33791588cb 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -130,6 +130,12 @@ Style/FrozenStringLiteralComment:
- 'actionpack/test/**/*.ruby'
- 'activestorage/db/migrate/**/*.rb'
+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:
Enabled: true