Sha256: d8fddb8f749423bcda17f4c76afcecfd86436e8d99a6d3a7419e1cb10c089e7a

Contents?: true

Size: 1011 Bytes

Versions: 2

Compression:

Stored size: 1011 Bytes

Contents

AllCops:
  Exclude:
    - vendor/**

LineLength:
  Enabled: false

MethodLength:
  Enabled: false

ClassLength:
  Enabled: false

Documentation:
  # don't require classes to be documented
  Enabled: false

CollectionMethods:
  # don't prefer map to collect, recuce to inject
  Enabled: false

Encoding:
  # no need to always specify encoding
  Enabled: false

Void:
  # == operator used in void context in specs
  Enabled: false

SignalException:
  # prefer raise to fail
  EnforcedStyle: only_raise

RaiseArgs:
  # don't care for what kind of raise
  Enabled: false

PerlBackrefs:
  # TODO: regular expression matching with $1, $2, etc.
  Enabled: false

BlockNesting:
  # TODO: fix too much nesting
  Max: 4

Lambda:
  # TODO: replace all lambda with -> or Proc
  Enabled: false

Blocks:
  # allow multi-line blocks like expect { }
  Enabled: false

WordArray:
  # %w vs. [ '', ... ]
  Enabled: false

CyclomaticComplexity:
  Enabled: false

FileName:
  # allow grape-entity.rb for a require
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
grape-entity-0.4.4 .rubocop.yml
grape-entity-0.4.3 .rubocop.yml