Skip to content

Commit

Permalink
update rubocop todo to allow things we're not going to get to yet today
Browse files Browse the repository at this point in the history
  • Loading branch information
jrochkind committed Jan 4, 2022
1 parent 69d1e8f commit 36d4288
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2021-12-31 12:13:51 UTC using RuboCop version 1.21.0.
# on 2022-01-04 18:53:25 UTC using RuboCop version 1.23.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: 1
# Cop supports --auto-correct.
# Configuration parameters: Include.
# Include: **/*.gemspec
Gemspec/RequireMFA:
Exclude:
- 'faraday-retry.gemspec'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
# SupportedHashRocketStyles: key, separator, table
# SupportedColonStyles: key, separator, table
# SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
Layout/HashAlignment:
Exclude:
- 'faraday-retry.gemspec'

# Offense count: 1
# Configuration parameters: IgnoredMethods.
Lint/AmbiguousBlockAssociation:
Expand All @@ -15,12 +33,12 @@ Lint/AmbiguousBlockAssociation:
# Offense count: 1
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
Metrics/AbcSize:
Max: 23
Max: 26

# Offense count: 2
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
Metrics/MethodLength:
Max: 20
Max: 26

# Offense count: 12
# Configuration parameters: Prefixes.
Expand Down Expand Up @@ -49,11 +67,11 @@ RSpec/InstanceVariable:
RSpec/MultipleExpectations:
Max: 3

# Offense count: 7
# Offense count: 9
# Configuration parameters: AllowSubject.
RSpec/MultipleMemoizedHelpers:
Max: 9

# Offense count: 1
# Offense count: 3
RSpec/NestedGroups:
Max: 4

0 comments on commit 36d4288

Please sign in to comment.