Sha256: a860a818e05ae36ffde70bec224326d13ac3706b5a83dc5bb6e9c12a6402a108

Contents?: true

Size: 812 Bytes

Versions: 4

Compression:

Stored size: 812 Bytes

Contents

require:
  - rubocop-performance
  - rubocop-rspec

inherit_from: .rubocop_todo.yml

AllCops:
  TargetRubyVersion: 2.4

Metrics/AbcSize:
  Max: 20

Metrics/BlockLength:
  Max: 50
  Exclude:
    - 'my_api_client.gemspec'
    - 'lib/my_api_client/rspec/matchers/**/*'
    - 'spec/**/*'

Metrics/MethodLength:
  Max: 15

Metrics/LineLength:
  Max: 100

Style/ClassAndModuleChildren:
  Exclude:
    - 'spec/**/*'

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma

RSpec/ExampleLength:
  Max: 10

RSpec/FilePath:
  Exclude:
    - 'spec/lib/my_api_client/integrations/**/*'
    - 'spec/lib/my_api_client/errors/**/*'
    - 'spec/lib/my_api_client/rspec/**/*'

RSpec/NestedGroups:
  Max: 4

RSpec/MultipleExpectations:
  Max: 4

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
my_api_client-0.11.0 .rubocop.yml
my_api_client-0.10.3 .rubocop.yml
my_api_client-0.10.2 .rubocop.yml
my_api_client-0.10.1 .rubocop.yml