Skip to content

Commit

Permalink
Regenerate todo with proper rubocop version
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp committed Jun 5, 2024
1 parent 15ef758 commit b4ee747
Showing 1 changed file with 30 additions and 53 deletions.
83 changes: 30 additions & 53 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2024-06-05 00:41:19 UTC using RuboCop version 1.63.4.
# on 2024-06-05 01:00:42 UTC using RuboCop version 1.28.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.

# Offense count: 16
# This cop supports safe autocorrection (--autocorrect).
# This cop supports safe auto-correction (--auto-correct).
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
# SupportedHashRocketStyles: key, separator, table
# SupportedColonStyles: key, separator, table
Expand All @@ -17,7 +17,7 @@ Layout/HashAlignment:
- 'spec/connection_spec.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# This cop supports safe auto-correction (--auto-correct).
# Configuration parameters: EnforcedStyle.
# SupportedStyles: symmetrical, new_line, same_line
Layout/MultilineArrayBraceLayout:
Expand Down Expand Up @@ -47,13 +47,13 @@ Lint/EmptyBlock:
- 'spec/server_spec.rb'

# Offense count: 25
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 181

# Offense count: 8
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns, inherit_mode.
# AllowedMethods: refine
# Offense count: 7
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods, inherit_mode.
# IgnoredMethods: refine
Metrics/BlockLength:
Max: 82

Expand All @@ -67,19 +67,13 @@ Metrics/BlockNesting:
Metrics/ClassLength:
Max: 311

# Offense count: 1
# Configuration parameters: LengthThreshold.
Metrics/CollectionLiteralLength:
Exclude:
- 'lib/http/2/huffman.rb'

# Offense count: 13
# Configuration parameters: AllowedMethods, AllowedPatterns.
# Configuration parameters: IgnoredMethods.
Metrics/CyclomaticComplexity:
Max: 60

# Offense count: 33
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
Metrics/MethodLength:
Max: 132

Expand All @@ -94,13 +88,13 @@ Metrics/ParameterLists:
Max: 7

# Offense count: 10
# Configuration parameters: AllowedMethods, AllowedPatterns.
# Configuration parameters: IgnoredMethods.
Metrics/PerceivedComplexity:
Max: 48

# Offense count: 9
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
# AllowedNames: as, at, by, cc, db, id, if, in, io, ip, of, on, os, pp, to
# AllowedNames: at, by, db, id, in, io, ip, of, on, os, pp, to
Naming/MethodParameterName:
Exclude:
- 'lib/http/2/buffer.rb'
Expand All @@ -109,9 +103,9 @@ Naming/MethodParameterName:
- 'lib/http/2/framer.rb'

# Offense count: 1
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers.
# SupportedStyles: snake_case, normalcase, non_integer
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339, x86_64
# AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339
Naming/VariableNumber:
Exclude:
- 'example/server.rb'
Expand All @@ -124,13 +118,13 @@ RSpec/Be:
# Offense count: 2
RSpec/BeforeAfterAll:
Exclude:
- '**/spec/spec_helper.rb'
- '**/spec/rails_helper.rb'
- '**/spec/support/**/*.rb'
- 'spec/spec_helper.rb'
- 'spec/rails_helper.rb'
- 'spec/support/**/*.rb'
- 'spec/huffman_spec.rb'

# Offense count: 70
# Configuration parameters: Prefixes, AllowedPatterns.
# Offense count: 65
# Configuration parameters: Prefixes.
# Prefixes: when, with, without
RSpec/ContextWording:
Exclude:
Expand Down Expand Up @@ -199,24 +193,15 @@ RSpec/MultipleExpectations:
Max: 7

# Offense count: 7
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
# SupportedStyles: always, named_only
# Configuration parameters: IgnoreSharedExamples.
RSpec/NamedSubject:
Exclude:
- 'spec/compressor_spec.rb'

# Offense count: 9
# Configuration parameters: AllowedGroups.
RSpec/NestedGroups:
Max: 4

# Offense count: 1
# Configuration parameters: AllowedPatterns.
# AllowedPatterns: ^expect_, ^assert_
RSpec/NoExpectationExample:
Exclude:
- 'spec/stream_spec.rb'

# Offense count: 2
RSpec/RepeatedDescription:
Exclude:
Expand All @@ -228,30 +213,13 @@ RSpec/RepeatedExample:
- 'spec/connection_spec.rb'
- 'spec/stream_spec.rb'

# Offense count: 10
# Configuration parameters: Include, CustomTransform, IgnoreMethods, IgnoreMetadata.
# Include: **/*_spec.rb
RSpec/SpecFilePathFormat:
Exclude:
- '**/spec/routing/**/*'
- 'spec/buffer_spec.rb'
- 'spec/client_spec.rb'
- 'spec/compressor_spec.rb'
- 'spec/connection_spec.rb'
- 'spec/emitter_spec.rb'
- 'spec/framer_spec.rb'
- 'spec/hpack_test_spec.rb'
- 'spec/huffman_spec.rb'
- 'spec/server_spec.rb'
- 'spec/stream_spec.rb'

# Offense count: 1
RSpec/UnspecifiedException:
Exclude:
- 'spec/emitter_spec.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# This cop supports safe auto-correction (--auto-correct).
Rake/Desc:
Exclude:
- 'Rakefile'
Expand All @@ -267,7 +235,6 @@ Style/Documentation:
- 'lib/tasks/generate_huffman_table.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: MinBodyLength, AllowConsecutiveConditionals.
Style/GuardClause:
Exclude:
Expand All @@ -279,3 +246,13 @@ Style/GuardClause:
Style/OptionalBooleanParameter:
Exclude:
- 'lib/http/2/flow_buffer.rb'

# Offense count: 34
# This cop supports safe auto-correction (--auto-correct).
# Configuration parameters: EnforcedStyle, MinSize, WordRegex.
# SupportedStyles: percent, brackets
Style/WordArray:
Exclude:
- 'spec/compressor_spec.rb'
- 'spec/connection_spec.rb'
- 'spec/huffman_spec.rb'

0 comments on commit b4ee747

Please sign in to comment.