Sha256: a4ed20575abc9810f2a3ad65bf0fe8cd3c85ad21008f762205db4b77ff6ce824

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

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

AllCops:
  SuggestExtensions: false
  TargetRubyVersion: 2.7
  Exclude:
    - 'vendor/**/*'
    - 'Guardfile'
  NewCops: enable

Gemspec/RequireMFA:
  Enabled: false

Layout/LeadingCommentSpace:
  Enabled: false

Layout/LineLength:
  Max: 150

Layout/SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space

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

Metrics/BlockNesting:
  Max: 4

Metrics/ClassLength:
  Enabled: false

Metrics/CyclomaticComplexity:
  Max: 15

Metrics/MethodLength:
  Max: 30

Metrics/PerceivedComplexity:
  Max: 20

Style/AccessModifierDeclarations:
  EnforcedStyle: inline

Style/CommentAnnotation:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: false

Style/HashConversion:
  Enabled: true

Style/Next:
  Enabled: false

Style/OptionalArguments:
  Enabled: false

Style/RedundantStringEscape:
  Enabled: true

Style/SignalException:
  EnforcedStyle: only_raise

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: single_quotes

Style/TrivialAccessors:
  AllowPredicates: true

Style/WordArray:
  Enabled: false

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hedgelog-0.2.1.alpha.4 .rubocop.yml
hedgelog-0.2.1.alpha.3 .rubocop.yml
hedgelog-0.2.1.alpha.2 .rubocop.yml
hedgelog-0.1.13.alpha.1 .rubocop.yml