Sha256: 7b26e4489d2a6d32ae494314eed415e69f593c9f122580a5b8084943bac9082b

Contents?: true

Size: 852 Bytes

Versions: 2

Compression:

Stored size: 852 Bytes

Contents

require: rubocop-rspec

Rails:
  Enabled: true

Documentation:
  Enabled: true

AllCops:
  DisplayCopNames: true
  TargetRubyVersion: 2.3
  Exclude:
    - db/schema.rb
    - bin/**/*
    - db/migrate/**/*
    - vendor/cache/**/*
    - vendor/bundle/**/*
    - build/**/*

Metrics/BlockLength:
  Exclude:
    # Because of the Grape DSL
    - lib/**/*.rb
    - Rakefile
    - hausgold-sdk.gemspec
    - spec/**/*.rb
    - '**/*.rake'

# Document all the things.
Style/DocumentationMethod:
  Enabled: true
  RequireForNonPublicMethods: true

# It's a deliberate idiom in RSpec.
# See: https://github.com/bbatsov/rubocop/issues/4222
Lint/AmbiguousBlockAssociation:
  Exclude:
    - "spec/**/*"

# Because +expect_any_instance_of().to have_received()+ is not
# supported with the +with(hash_including)+ matchers
RSpec/MessageSpies:
  EnforcedStyle: receive

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
factory_bot_instrumentation-0.2.0 .rubocop.yml
factory_bot_instrumentation-0.1.0 .rubocop.yml