Sha256: c5ec963e466cbb958a65a4a8502049d16b261155340669b3c400fe6c8d9d42b7

Contents?: true

Size: 1.16 KB

Versions: 3

Compression:

Stored size: 1.16 KB

Contents

AllCops:
  Exclude:
    - vendor/**/*
    - bin/**/*

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

StringLiterals:
  # use single or double-quoted strings, as you please
  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

HandleExceptions:
  Enabled: false

MultilineBlockChain:
  Enabled: false

FileName:
  Enabled: false

RegexpLiteral:
  Enabled: false

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mongoid-history-0.4.4 .rubocop.yml
mongoid-history-0.4.3 .rubocop.yml
mongoid-history-0.4.2 .rubocop.yml