Sha256: 02d1349272cf251670ce0f20cfbf88cbd742dee3429d629f848fba424574574d

Contents?: true

Size: 624 Bytes

Versions: 4

Compression:

Stored size: 624 Bytes

Contents

inherit_gem:
  fashion_police:
    - .rubocop.yml

# Deactivate rule that makes `lambda` mandatory in defavor of `->`
# when having blocks.
Style/Lambda:
  Enabled: false

# Do not verify empty lines around blocks in specs
Layout/EmptyLinesAroundBlockBody:
  Exclude:
    - spec/**/*

# Allow using normal test doubles, since they are useful for mocking.
# See https://github.com/KissKissBankBank/fashion_police/pull/34
RSpec/VerifiedDoubles:
  Enabled: false

# Allow 5 nesting groups for context
RSpec/NestedGroups:
  Max: 5

# Enable long blocs for Gemspec files
Metrics/BlockLength:
  Exclude:
    - safe_pusher.gemspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
safe_pusher-0.1.3 .rubocop.yml
safe_pusher-0.1.2 .rubocop.yml
safe_pusher-0.1.1 .rubocop.yml
safe_pusher-0.1.0 .rubocop.yml