Sha256: 890b765c0ef79038ae19b67def198e6b5e28490cbe46b7a7a844778f372eae62

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 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

DoubleNegation:
  Enabled: false

PredicateName:
  Enabled: false

inherit_from: .rubocop_todo.yml

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
faraday-digestauth-0.2.1 .rubocop.yml
grape-0.9.0 .rubocop.yml