Sha256: 1f95d87688f6dc021b0f86e99b8c346cb98bd7f01200e7702aaf1f9b56ea3996

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 KB

Contents

###########################
# Configuration for rubocop
#
# Most of these are disabling existing cops, primarily
# due to a smattering of different styles and loose
# guidlines for contributions.
#
# Any of these may be changed.

MethodLength:
  Max: 200

LineLength:
  Max: 160

HashSyntax:
  Enabled: false

# Prefer single-quotes
StringLiterals:
  Enabled: false

AlignParameters:
  Enabled: false

SpaceAroundOperators:
  Enabled: false

Encoding:
  Enabled: false

PercentR:
  Enabled: false

SpaceAroundBraces:
  Enabled: false

FavorPercentR:
  Enabled: false

AndOr:
  Enabled: false

EmptyLineBetweenDefs:
  Enabled: false

SpaceInsideHashLiteralBraces:
  Enabled: false

SymbolName:
  Enabled: false

ReduceArguments:
  Enabled: false

RescueException:
  Enabled: false

Syntax:
  Enabled: false

WordArray:
  Enabled: false

IfUnlessModifier:
  Enabled: false

ParenthesesAroundCondition:
  Enabled: false

MethodAndVariableSnakeCase:
  Enabled: false

AvoidClassVars:
  Enabled: false

WhileUntilModifier:
  Enabled: false

Semicolon:
  Enabled: false

UnlessElse:
  Enabled: false

BlockNesting:
  Enabled: false

Proc:
  Enabled: false

# Global vars should be removed
AvoidGlobalVars:
  Enabled: false

# Probably some good ones in here.
# Disabled for $? => $CHILD_STATUS
AvoidPerlisms:
  Enabled: false

Lambda:
  Enabled: false

CollectionMethods:
  Enabled: false

CaseIndentation:
  Enabled: false

AllCops:
  Excludes:
    - vendor/**

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
easy_filter-0.1.1 .rubocop.yml
easy_filter-0.1.0 .rubocop.yml
easy_filter-0.0.4 .rubocop.yml
easy_filter-0.0.3 .rubocop.yml