Sha256: 59ba5fae777f3216b939052f0661a2a4a31dc8f524ea9b162b254ae1f7be0905

Contents?: true

Size: 816 Bytes

Versions: 3

Compression:

Stored size: 816 Bytes

Contents

# The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start looking for the configuration file in the directory
# where the inspected file is and continue its way up to the root directory.
#
# See https://docs.rubocop.org/rubocop/configuration

AllCops:
  NewCops: enable

Metrics/AbcSize:
  Max: 34 # double the default

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*_spec.rb'
    - '*.gemspec'

Metrics/CyclomaticComplexity:
  Max: 14 # double the default

Metrics/MethodLength:
  Max: 20 # double the default
  CountAsOne: ['array', 'hash', 'heredoc']

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
experian_consumer_view-1.2.0 .rubocop.yml
experian_consumer_view-1.1.0 .rubocop.yml
experian_consumer_view-1.0.0 .rubocop.yml