Sha256: 141209be6f9803217608b7b9700e65a2ef570de8a31427f58d7085be59a6a4a8

Contents?: true

Size: 714 Bytes

Versions: 2

Compression:

Stored size: 714 Bytes

Contents

# 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:
  TargetRubyVersion: 2.3
  Exclude:
    - 'bin/*'
    - 'spec/**/*'

Layout/LineLength:
  Max: 100

Lint/RaiseException:
  Enabled: true
Lint/StructNewOverride:
  Enabled: true

Metrics/AbcSize:
  Enabled: true
  Max: 20
Metrics/ClassLength:
  Enabled: false
Metrics/MethodLength:
  Enabled: false
Metrics/ModuleLength:
  Enabled: false

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shark-permissions-core-0.2.0 .rubocop.yml
shark-permissions-core-0.1.0 .rubocop.yml