config/enabled.yml in rubocop-0.17.0 vs config/enabled.yml in rubocop-0.18.0
- old
+ new
@@ -239,10 +239,14 @@
LeadingCommentSpace:
Description: 'Comments should start with a space.'
Enabled: true
+LineEndConcatenation:
+ Description: 'Use \\ instead of + to concatenate two string literals at line end.'
+ Enabled: true
+
LineLength:
Description: 'Limit lines to 79 characters.'
Enabled: true
MethodCallParentheses:
@@ -577,9 +581,15 @@
ParenthesesAsGroupedExpression:
Description: >-
Checks for method calls with a space before the opening
parenthesis.
+ Enabled: true
+
+RequireParentheses:
+ Description: >-
+ Use parentheses in the method call to avoid confusion
+ about precedence.
Enabled: true
RescueException:
Description: 'Avoid rescuing the Exception class.'
Enabled: true