Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ HashSyntax:
Description: >
Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
{ :a => 1, :b => 2 }.
EnforcedStyle: ruby19
EnforcedStyle: ruby18
Enabled: true

IfWithSemicolon:
Expand All @@ -80,8 +80,8 @@ IndentationWidth:
Enabled: true

LineLength:
Description: 'Limit lines to 80 characters.'
Max: 80
Description: 'Limit lines to 100 characters.'
Max: 100
Enabled: true

MethodCallParentheses:
Expand Down