Sha256: 76598d8041ed7444bb571767e9896840201c40c83f7404795ef60ef9de63aca3

Contents?: true

Size: 873 Bytes

Versions: 1

Compression:

Stored size: 873 Bytes

Contents

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

inherit_mode:
  merge:
    - Exclude  
    - Include  

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

#===============
#=== METRICS ===
#===============

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

Metrics/MethodLength:
  CountComments: false 
  Max: 12

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

#=============
#=== RSPEC ===
#=============

RSpec/AlignLeftLetBrace:
  Enabled: true

RSpec/ExampleLength:
  Max: 10

Version data entries

1 entries across 1 versions & 1 rubygems

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