Sha256: 84adb9065998dfc9cdb68cf06b2d5e9a7575ee2893b2799a42dd0bc9d160b043

Contents?: true

Size: 854 Bytes

Versions: 2

Compression:

Stored size: 854 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
  Exclude:
    - 'spec/fixture/**/*'
Style/HashSyntax:
  EnforcedShorthandSyntax: never

Naming/MethodParameterName:
  Exclude:
    - spec/**/*
    - test.rb
Style/Documentation:
  Enabled: false
Metrics/BlockLength:
  Max: 75
Metrics/MethodLength:
  Max: 30
Metrics/PerceivedComplexity:
  Max: 10
Metrics/AbcSize:
  Max: 30

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rshade-0.2.2 .rubocop.yml
rshade-0.2.1 .rubocop.yml