File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,6 @@ I18n/GetText/DecorateStringFormattingUsingPercent:
22
22
I18n/RailsI18n/DecorateString :
23
23
Enabled : false
24
24
25
- # This cop supports safe auto-correction (--auto-correct).
26
- Layout/SpaceAfterSemicolon :
27
- Exclude :
28
- - ' lib/puppet/util/retry_action.rb'
29
-
30
25
# This cop supports safe auto-correction (--auto-correct).
31
26
# Configuration parameters: EnforcedStyleInsidePipes.
32
27
# SupportedStylesInsidePipes: space, no_space
Original file line number Diff line number Diff line change 3
3
module Puppet ::Util ::RetryAction
4
4
class RetryException < Exception ; end # rubocop:disable Lint/InheritException
5
5
class RetryException ::NoBlockGiven < RetryException ; end
6
- class RetryException ::NoRetriesGiven < RetryException ; end
6
+ class RetryException ::NoRetriesGiven < RetryException ; end
7
7
class RetryException ::RetriesExceeded < RetryException ; end
8
8
9
9
# Execute the supplied block retrying with exponential backoff.
You can’t perform that action at this time.
0 commit comments