Sha256: c2b2c97d8520066612bc3dfc05a6d9f3b76810435bc363112c3ee6065d40d9ad

Contents?: true

Size: 718 Bytes

Versions: 1

Compression:

Stored size: 718 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

Version data entries

1 entries across 1 versions & 1 rubygems

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