1
1
# This configuration was generated by
2
2
# `rubocop --auto-gen-config`
3
- # on 2023-04-13 15:49:55 UTC using RuboCop version 1.48.1.
3
+ # on 2023-04-19 09:06:42 UTC using RuboCop version 1.48.1.
4
4
# The point is for the user to remove these configuration records
5
5
# one by one as the offenses are removed from the code base.
6
6
# Note that changes in the inspected code, or installation of new
7
7
# versions of RuboCop, may require this file to be generated again.
8
8
9
+ # Offense count: 1
10
+ # This cop supports safe autocorrection (--autocorrect).
11
+ # Configuration parameters: Severity, Include.
12
+ # Include: **/*.gemspec
13
+ Gemspec/RequireMFA :
14
+ Exclude :
15
+ - ' puppetlabs_spec_helper.gemspec'
16
+
9
17
# Offense count: 5
10
18
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
11
19
Metrics/AbcSize :
@@ -59,6 +67,12 @@ RSpec/DescribeClass:
59
67
RSpec/ExampleLength :
60
68
Max : 13
61
69
70
+ # Offense count: 5
71
+ # Configuration parameters: .
72
+ # SupportedStyles: have_received, receive
73
+ RSpec/MessageSpies :
74
+ EnforcedStyle : receive
75
+
62
76
# Offense count: 5
63
77
RSpec/MultipleExpectations :
64
78
Max : 3
@@ -84,6 +98,13 @@ Style/CombinableLoops:
84
98
Exclude :
85
99
- ' lib/puppetlabs_spec_helper/tasks/fixtures.rb'
86
100
101
+ # Offense count: 7
102
+ # This cop supports safe autocorrection (--autocorrect).
103
+ # Configuration parameters: MaxUnannotatedPlaceholdersAllowed, AllowedMethods, AllowedPatterns.
104
+ # SupportedStyles: annotated, template, unannotated
105
+ Style/FormatStringToken :
106
+ EnforcedStyle : unannotated
107
+
87
108
# Offense count: 4
88
109
# Configuration parameters: AllowedVariables.
89
110
Style/GlobalVars :
@@ -94,3 +115,19 @@ Style/GlobalVars:
94
115
Style/MixinUsage :
95
116
Exclude :
96
117
- ' lib/puppetlabs_spec_helper/tasks/fixtures.rb'
118
+
119
+ # Offense count: 9
120
+ # This cop supports safe autocorrection (--autocorrect).
121
+ # Configuration parameters: EnforcedStyleForMultiline.
122
+ # SupportedStylesForMultiline: comma, consistent_comma, no_comma
123
+ Style/TrailingCommaInArguments :
124
+ Exclude :
125
+ - ' lib/puppetlabs_spec_helper/tasks/fixtures.rb'
126
+ - ' spec/unit/puppetlabs_spec_helper/tasks/fixture_helpers_spec.rb'
127
+
128
+ # Offense count: 17
129
+ # This cop supports safe autocorrection (--autocorrect).
130
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
131
+ # URISchemes: http, https
132
+ Layout/LineLength :
133
+ Max : 195
0 commit comments