Sha256: 21df18e3417f2aec08f071ea96f62339d78a354489eef0535f0f9c22a4119352

Contents?: true

Size: 798 Bytes

Versions: 1

Compression:

Stored size: 798 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:
    - Rakefile
    - keyless.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

1 entries across 1 versions & 1 rubygems

Version Path
keyless-1.0.1 .rubocop.yml