Sha256: 5dc0f43dd15aed1a32dcd23783a7385e73bb048898ee970ed485be52f4a2e652

Contents?: true

Size: 750 Bytes

Versions: 2

Compression:

Stored size: 750 Bytes

Contents

# Docdata-order RuboCop configuration

require:
  - rubocop-performance
  - rubocop-rake
  - rubocop-rspec

AllCops:
  NewCops: enable
  TargetRubyVersion: 2.4
  DisplayCopNames: true
  DisplayStyleGuide: true
  Exclude:
    - 'tmp/**/*'
    - 'vendor/**/*'


Layout/LineLength:
  Enabled: false


Metrics/AbcSize:
  Max: 58

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

Metrics/ClassLength:
  Enabled: false

Metrics/MethodLength:
  Enabled: false


RSpec/DescribedClass:
  EnforcedStyle: explicit

RSpec/ExampleLength:
  Max: 41

RSpec/MultipleExpectations:
  Max: 10


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

Style/GuardClause:
  Enabled: false

Style/StringLiterals:
  Enabled: false

Style/SymbolArray:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
docdata-order-2.1.0 .rubocop.yml
docdata-order-2.0.0 .rubocop.yml