11# This configuration was generated by
22# `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.
44# The point is for the user to remove these configuration records
55# one by one as the offenses are removed from the code base.
66# Note that changes in the inspected code, or installation of new
77# versions of RuboCop, may require this file to be generated again.
88
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+
917# Offense count: 5
1018# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
1119Metrics/AbcSize :
@@ -59,6 +67,12 @@ RSpec/DescribeClass:
5967RSpec/ExampleLength :
6068 Max : 13
6169
70+ # Offense count: 5
71+ # Configuration parameters: .
72+ # SupportedStyles: have_received, receive
73+ RSpec/MessageSpies :
74+ EnforcedStyle : receive
75+
6276# Offense count: 5
6377RSpec/MultipleExpectations :
6478 Max : 3
@@ -84,6 +98,13 @@ Style/CombinableLoops:
8498 Exclude :
8599 - ' lib/puppetlabs_spec_helper/tasks/fixtures.rb'
86100
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+
87108# Offense count: 4
88109# Configuration parameters: AllowedVariables.
89110Style/GlobalVars :
@@ -94,3 +115,19 @@ Style/GlobalVars:
94115Style/MixinUsage :
95116 Exclude :
96117 - ' 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