Sha256: 85de90e137662b1ffde2cdffa56e652559009e91c3f1c81d16b69ea554e2c80b

Contents?: true

Size: 755 Bytes

Versions: 1

Compression:

Stored size: 755 Bytes

Contents

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

# https://docs.rubocop.org/rubocop/configuration.html
AllCops:
  NewCops: enable
  Exclude:
    - 'Guardfile'
    - 'reattract.gemspec'
    - 'bin/**/*'

Layout/LineLength:
  Max: 120
  AllowedPatterns: ['\A#'] # Ignore comments

Layout/HashAlignment:
  EnforcedColonStyle: table
  EnforcedHashRocketStyle: table

Metrics/AbcSize:
  Max: 25

Metrics/ClassLength:
  CountAsOne:
    - heredoc
    - hash
    - array

Metrics/ModuleLength:
  CountAsOne:
    - heredoc
    - hash
    - array

Metrics/MethodLength:
  Max: 20
  CountAsOne:
    - heredoc
    - hash
    - array

Metrics/ParameterLists:
  Max: 15

RSpec/MultipleExpectations:
  Max: 4

RSpec/MultipleMemoizedHelpers:
  Max: 7

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reattract-0.4.1 .rubocop.yml