Sha256: aad9ffd31ae23e13b5be93820cae020042cdbf083f39ec0e8fe4eef0b7ebd42f

Contents?: true

Size: 847 Bytes

Versions: 5

Compression:

Stored size: 847 Bytes

Contents

# see https://github.com/bbatsov/ruby-style-guide#percent-q-shorthand

AllCops:
  Exclude:
    - "vendor/**/*" # rubocop config/default.yml
    - "db/schema.rb"
  DisplayCopNames: true

Metrics/LineLength:
  Max: 500

Metrics/ClassLength:
  CountComments: false  # count full line comments?
  Max: 320

Metrics/MethodLength:
  CountComments: false  # count full line comments?
  Max: 50

Metrics/AbcSize:
  Enabled: true
  Max: 100

Metrics/CyclomaticComplexity:
  Max: 20

Metrics/PerceivedComplexity:
  Max: 20

Metrics/ParameterLists:
  Max: 6

Style/Documentation:
  Enabled: false

Style/SpecialGlobalVars:
  Enabled: false

Style/RedundantSelf:
  Enabled: false

Style/SignalException:
  EnforcedStyle: only_raise

Style/HashSyntax:
  Enabled: false

Style/FormatString:
  EnforcedStyle: percent

Lint/UnusedMethodArgument:
  Enabled: false

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rundock-0.5.3 .rubocop.yml
rundock-0.5.2 .rubocop.yml
rundock-0.5.0 .rubocop.yml
rundock-0.4.16 .rubocop.yml
rundock-0.4.15 .rubocop.yml