Skip to content

Commit

Permalink
rubocop: disable Style/StringConcatenation
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
peff committed Oct 5, 2022
1 parent c1a28b8 commit 55c9104
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Style/ConditionalAssignment:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/StringConcatenation:
Enabled: false
Layout/LineLength:
Enabled: false

Expand Down

0 comments on commit 55c9104

Please sign in to comment.