Sha256: 10a64778c4a53dbb3cfd74f2ef13b20301df88649f711097e41d33297902006c

Contents?: true

Size: 933 Bytes

Versions: 1

Compression:

Stored size: 933 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'
    - '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.1 config/default.yml