Sha256: 709c31e2bcd441060b3eafd2773d1bb0f18818ef89b6bbce2330708798c1705c

Contents?: true

Size: 675 Bytes

Versions: 18

Compression:

Stored size: 675 Bytes

Contents

inherit_from: ../.rubocop.yml

require:
  - rubocop-rspec

AllCops:
  TargetRubyVersion: 2.5.0

Metrics/BlockLength:
  Exclude:
  # Ignore RSpec DSL
    - spec/**/*
  # Ignore gemspec DSL
    - '*.gemspec'

# Naming/FileName:
#   Exclude:
#     - Rakefile

# Avoid more than `Max` levels of nesting.
BlockNesting:
  Max: 3

# Align with the style guide.
CollectionMethods:
  PreferredMethods:
    collect:  'map'
    inject:   'reduce'
    find:     'detect'
    find_all: 'sélect'

# Prefer #kind_of? over #is_a?
ClassCheck:
  EnforcedStyle: kind_of?

Security/Eval:
  Exclude:
    - Rakefile

AlignHash:
  EnforcedColonStyle: table

MessageSpies:
  EnforcedStyle: receive

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
defmastership-1.0.18 config/rubocop.yml
defmastership-1.0.17 config/rubocop.yml
defmastership-1.0.16 config/rubocop.yml
defmastership-1.0.15 config/rubocop.yml
defmastership-1.0.14 config/rubocop.yml
defmastership-1.0.13 config/rubocop.yml
defmastership-1.0.12 config/rubocop.yml
defmastership-1.0.11 config/rubocop.yml
defmastership-1.0.10 config/rubocop.yml
defmastership-1.0.9 config/rubocop.yml
defmastership-1.0.8 config/rubocop.yml
defmastership-1.0.7 config/rubocop.yml
defmastership-1.0.6 config/rubocop.yml
defmastership-1.0.5 config/rubocop.yml
defmastership-1.0.4 config/rubocop.yml
defmastership-1.0.3 config/rubocop.yml
defmastership-1.0.2 config/rubocop.yml
defmastership-1.0.1 config/rubocop.yml