Sha256: 110941f32bccdb10bc2738952cc8e35ac14c2f777c7a2413d23ce13e845d12fe

Contents?: true

Size: 1.05 KB

Versions: 13

Compression:

Stored size: 1.05 KB

Contents

require: rubocop-rspec

Rails:
  Enabled: true

Documentation:
  Enabled: true

AllCops:
  DisplayCopNames: true
  TargetRubyVersion: 2.5
  Exclude:
    - bin/**/*
    - vendor/**/*
    - build/**/*
    - gemfiles/**/*

Metrics/BlockLength:
  Exclude:
    - Rakefile
    - '*.gemspec'
    - spec/**/*.rb
    - '**/*.rake'
    - doc/**/*.rb

# 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

# Because nesting makes sense here to group the feature tests
# more effective. This increases maintainability.
RSpec/NestedGroups:
  Max: 4

# Disable regular Rails spec paths.
RSpec/FilePath:
  Enabled: false

# Because we just implemented the ActiveRecord API.
Rails/SkipsModelValidations:
  Enabled: false

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
billomat-0.4.1 .rubocop.yml
billomat-0.4.0 .rubocop.yml
grape-jwt-authentication-2.0.4 .rubocop.yml
keyless-1.0.2 .rubocop.yml
billomat-0.3.0 .rubocop.yml
rimless-1.2.0 .rubocop.yml
rimless-1.1.1 .rubocop.yml
rimless-1.1.0 .rubocop.yml
rimless-1.0.4 .rubocop.yml
rimless-1.0.3 .rubocop.yml
rimless-1.0.2 .rubocop.yml
rimless-1.0.1 .rubocop.yml
rimless-1.0.0 .rubocop.yml