aboutsummaryrefslogtreecommitdiffstats
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorKoichi ITO <koic.ito@gmail.com>2017-08-13 22:14:22 +0900
committerKoichi ITO <koic.ito@gmail.com>2017-08-13 22:14:24 +0900
commitd17264d93f4278319e60ee20c4e29dc54be343e4 (patch)
tree45c79c831e87863e8733c93d7e0473fee6fcfff7 /.rubocop.yml
parent0ea00bb5b0d57c635350231eeeb2336b7cbcc4b8 (diff)
downloadrails-d17264d93f4278319e60ee20c4e29dc54be343e4.tar.gz
rails-d17264d93f4278319e60ee20c4e29dc54be343e4.tar.bz2
rails-d17264d93f4278319e60ee20c4e29dc54be343e4.zip
Use frozen string literal in root files
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml14
1 files changed, 1 insertions, 13 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index ac8623638c..88d52c68be 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -83,20 +83,8 @@ Style/FrozenStringLiteralComment:
Enabled: true
EnforcedStyle: always
Include:
- - 'activesupport/**/*'
- - 'activemodel/**/*'
- - 'actioncable/**/*'
- - 'activejob/**/*'
- - 'activerecord/**/*'
- - 'activestorage/**/*'
- - 'actionmailer/**/*'
- - 'actionview/**/*'
- - 'actionpack/**/*'
- - 'ci/**/*'
- - 'guides/**/*'
- - 'tasks/**/*'
- - 'tools/**/*'
Exclude:
+ - 'railties/**/*'
- 'actionview/test/**/*.builder'
- 'actionview/test/**/*.ruby'
- 'actionpack/test/**/*.builder'