diff options
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 7dfb7b4b81..2889acfdd1 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -28,10 +28,6 @@ Layout/CommentIndentation: Layout/EmptyLineAfterMagicComment: Enabled: true -# No extra empty lines. -Layout/EmptyLines: - Enabled: true - # In a regular class definition, no empty lines around the body. Layout/EmptyLinesAroundClassBody: Enabled: true @@ -94,9 +90,12 @@ Style/FrozenStringLiteralComment: - 'activerecord/**/*' - 'actionmailer/**/*' - 'actionview/**/*' + - 'actionpack/**/*' Exclude: - 'actionview/test/**/*.builder' - 'actionview/test/**/*.ruby' + - 'actionpack/test/**/*.builder' + - 'actionpack/test/**/*.ruby' # Use `foo {}` not `foo{}`. Layout/SpaceBeforeBlockBraces: |