Sha256: 9ce907a683c52705c463580720661c457f5e3f82bb33011a533c602aea5f7185

Contents?: true

Size: 950 Bytes

Versions: 4

Compression:

Stored size: 950 Bytes

Contents

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

AllCops:
  TargetRubyVersion: 2.4
  Exclude:
    - 'vendor/**/*'
    - 'Guardfile'

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

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

Style/FrozenStringLiteralComment:
  Enabled: false

Style/AccessModifierDeclarations:
  EnforcedStyle: inline

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hedgelog-0.2.1.alpha1 .rubocop.yml
hedgelog-0.2.0 .rubocop.yml
hedgelog-0.1.12 .rubocop.yml
hedgelog-0.1.11 .rubocop.yml