Skip to content

Commit 1113149

Browse files
committed
Fix Layout/LineContinuationSpacing Rubocop offences.
1 parent 3dffe60 commit 1113149

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.rubocop_todo.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ Layout/LeadingCommentSpace:
1313
- 'lib/zip/bzip2/ffi/libbz2.rb'
1414
- 'lib/zip/bzip2/libbz2.rb'
1515

16-
# Offense count: 2
17-
# This cop supports safe autocorrection (--autocorrect).
18-
# Configuration parameters: EnforcedStyle.
19-
# SupportedStyles: space, no_space
20-
Layout/LineContinuationSpacing:
21-
Exclude:
22-
- 'lib/zip/bzip2/errors.rb'
23-
2416
# Offense count: 9
2517
# This cop supports safe autocorrection (--autocorrect).
2618
Style/FileRead:

lib/zip/bzip2/errors.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DataError < Error
2626
def initialize(message = nil) #:nodoc:
2727
super(
2828
message ||
29-
'Data integrity error detected (mismatch between stored and computed CRCs, '\
29+
'Data integrity error detected (mismatch between stored and computed CRCs, ' \
3030
'or other anomaly in the compressed data)',
3131
)
3232
end

0 commit comments

Comments
 (0)