Skip to content

Commit 55c9104

Browse files
committed
rubocop: disable Style/StringConcatenation
Having looked at the suggestions, I think it actually makes things less readable (e.g., in a sequence of lines which all do '+ "foo"' at the end, the concatenation makes it more obvious what is going on).
1 parent c1a28b8 commit 55c9104

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Style/ConditionalAssignment:
2626
Enabled: false
2727
Style/IfUnlessModifier:
2828
Enabled: false
29+
Style/StringConcatenation:
30+
Enabled: false
2931
Layout/LineLength:
3032
Enabled: false
3133

0 commit comments

Comments
 (0)