Skip to content

Commit 75a68f1

Browse files
committed
Layout/SpaceAfterSemicolon
This commit enables the Rubocop Layout/SpaceAfterSemicolon cop and addresses all offenses.
1 parent db3e94f commit 75a68f1

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.rubocop_todo.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ I18n/GetText/DecorateStringFormattingUsingPercent:
2222
I18n/RailsI18n/DecorateString:
2323
Enabled: false
2424

25-
# This cop supports safe auto-correction (--auto-correct).
26-
Layout/SpaceAfterSemicolon:
27-
Exclude:
28-
- 'lib/puppet/util/retry_action.rb'
29-
3025
# This cop supports safe auto-correction (--auto-correct).
3126
# Configuration parameters: EnforcedStyleInsidePipes.
3227
# SupportedStylesInsidePipes: space, no_space

lib/puppet/util/retry_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module Puppet::Util::RetryAction
44
class RetryException < Exception; end # rubocop:disable Lint/InheritException
55
class RetryException::NoBlockGiven < RetryException; end
6-
class RetryException::NoRetriesGiven < RetryException;end
6+
class RetryException::NoRetriesGiven < RetryException; end
77
class RetryException::RetriesExceeded < RetryException; end
88

99
# Execute the supplied block retrying with exponential backoff.

0 commit comments

Comments
 (0)