From beaa5c6ffd84e01e492aa6cdd261d548aa8c1877 Mon Sep 17 00:00:00 2001 From: Philip Duffy Date: Tue, 15 Apr 2014 00:58:28 -0400 Subject: [PATCH] Change Rubocop standards for 1.8 syntax and 100 char line length --- config/rubocop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/rubocop.yml b/config/rubocop.yml index 56239958b..adaa6397d 100644 --- a/config/rubocop.yml +++ b/config/rubocop.yml @@ -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: @@ -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: