Sha256: faa6b931438672ac57d5d103ef45d6e26e78ed4e088d86d5c47d60dc6fa628f3

Contents?: true

Size: 914 Bytes

Versions: 2

Compression:

Stored size: 914 Bytes

Contents

require: rubocop-rspec

AllCops:
  TargetRubyVersion: 2.3
  Exclude:
    - "examples/*.rb"

#
# Opinionated cops
#

Layout/DotPosition:
  EnforcedStyle: trailing

Layout/IndentHash:
  EnforcedStyle: consistent

Metrics/AbcSize:
  Max: 20

Metrics/LineLength:
  Max: 100

Style/ClassAndModuleChildren:
  EnforcedStyle: compact

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma

#
# Disabled cops
#

RSpec/VerifiedDoubles:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: false

Style/BracesAroundHashParameters:
  Enabled: false

Style/FormatString:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/BlockComments:
  Exclude:
    - "spec/spec_helper.rb"

Metrics/BlockLength:
  Exclude:
    - "spec/**/*_spec.rb"

Style/Proc:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
delayed_deprecation-0.2.0 .rubocop.yml
delayed_deprecation-0.1.0 .rubocop.yml