Sha256: 06533772f98b6dddc0d5f255cd9257f49336c2393c971ec96e2f69abe3049a7e

Contents?: true

Size: 690 Bytes

Versions: 2

Compression:

Stored size: 690 Bytes

Contents

inherit_from: .rubocop_todo.yml

inherit_gem:
  gc_ruboconfig: rubocop.yml

AllCops:
  TargetRubyVersion: 3.0

Metrics/MethodLength:
  Max: 15

# Even after some serious refactoring, the default of 15 can be hard to meet
# if you favour saving intermediate state into well-named variables
Metrics/AbcSize:
  Max: 20

Style/RescueStandardError:
  Exclude:
    - "*/**/*_spec.rb"

Naming/MethodParameterName:
  AllowedNames:
    # These are the default allowed names, set by Rubocop
    - io
    - id
    # These are some custom names that we want to allow, since they aren't
    # uncommunicative - they're actually rather meaningful!
    - as

Gemspec/RequiredRubyVersion:
  Enabled: False

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
coach-3.0.1 .rubocop.yml
coach-3.0.0 .rubocop.yml