Sha256: 9bd29825b8e4daba4b2d1918c54f0b67836062b75b96f0d62c3ccb842245bd7d

Contents?: true

Size: 952 Bytes

Versions: 1

Compression:

Stored size: 952 Bytes

Contents

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

inherit_mode:
  merge:
    - Exclude  
    - Include  

AllCops:
  DisplayCopNames: true
  DisplayStyleGuide: true
  Include:
    - "Rakefile"
    - "Gemfile"
    - "*.gemspec"
    - 'Rakefile'
    - 'lib/**/*'
    - 'bin/**/*'
    - 'spec/**/*.rb'
    - '.simplecov'
  Exclude:
    - 'bin/setup'
    - 'Gemfile.lock'
    - '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

Style/HashEachMethods:
  Enabled: true
  
Style/HashTransformKeys:
  Enabled: true
  
Style/HashTransformValues:
  Enabled: true

Version data entries

1 entries across 1 versions & 1 rubygems

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