Sha256: 1b05f13565ff55163602698a38a54dee7aa6b68e20c9774ea1bef79db039b912

Contents?: true

Size: 822 Bytes

Versions: 1

Compression:

Stored size: 822 Bytes

Contents

# This is the configuration used to check the rubocop source code.
inherit_from: #{RUBOCOP_HOME}/config/default.yml

AllCops:
  Include:
    - '**/lib/**/*'
  Exclude:
    - 'bin/**/*'

CyclomaticComplexity: 
  Max: 15

PerceivedComplexity:
  Max: 20

MethodLength:
  Max: 30

ClassLength:
  Enabled: false

LineLength:
  Max: 150

WordArray:
  Enabled: false

LeadingCommentSpace:
  Enabled: false

CommentAnnotation:
  Enabled: false

Documentation:
  Enabled: false

Next:
  Enabled: false

OptionalArguments:
  Enabled: false

SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space

SignalException:
  EnforcedStyle: only_raise

TrivialAccessors:
  AllowPredicates: true

BlockNesting:
  Max: 4

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: single_quotes

Style/BlockLength:
  Exclude:
    - 'spec/**/*.rb'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hedgelog-0.1.9 .rubocop.yml