Sha256: 6e959e5e913959357216bf7c538768ba33808addccb4d6c1fdf498fc793fe672

Contents?: true

Size: 750 Bytes

Versions: 1

Compression:

Stored size: 750 Bytes

Contents

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

inherit_mode:
  merge:
    - Exclude  

AllCops:
  DisplayCopNames: true
  DisplayStyleGuide: true
  Include:
    - 'Rakefile'
    - 'lib/**/*'
    - 'bin/**/*'
    - 'spec/**/*.rb'
  Exclude:
    - 'bin/setup'
    - 'Gemfile.lock'
    - 'Gemfile'
    - 'gemfiles/**/*'
    - '**/*.json'
    - '**/*.yml'
    - 'vendor/bundle/**/*'

Layout/LineLength:
  Enabled: true
  Max: 125

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

Metrics/MethodLength:
  CountComments: false 
  Max: 12

Metrics/ParameterLists:
  Enabled: true
  Max: 5
  CountKeywordArgs: false

RSpec/AlignLeftLetBrace:
  Enabled: true

RSpec/ExampleLength:
  Max: 10

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-mhenrixon-0.79.5 config/default.yml