Sha256: fce3e73845525ba173a170bedfc19f2bade9ba23ba1928cf6a03554ac8cc1d6d

Contents?: true

Size: 852 Bytes

Versions: 5

Compression:

Stored size: 852 Bytes

Contents

require: rubocop-rspec

Rails:
  Enabled: true

Documentation:
  Enabled: true

AllCops:
  DisplayCopNames: true
  TargetRubyVersion: 2.4
  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

5 entries across 5 versions & 1 rubygems

Version Path
factory_bot_instrumentation-0.6.0 .rubocop.yml
factory_bot_instrumentation-0.5.1 .rubocop.yml
factory_bot_instrumentation-0.5.0 .rubocop.yml
factory_bot_instrumentation-0.4.0 .rubocop.yml
factory_bot_instrumentation-0.3.0 .rubocop.yml