Sha256: e0f0a734f832f02f58dba0c40851e37e355d4f80e68d23362b771dc20bfd9913

Contents?: true

Size: 958 Bytes

Versions: 7

Compression:

Stored size: 958 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

Style/RegexpLiteral:
  Enabled: false

Style/Alias:
  Enabled: false

Style/MutableConstant:
  Enabled: false

Lint/UnusedMethodArgument:
  Enabled: false

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rundock-1.0.5 .rubocop.yml
rundock-1.0.4 .rubocop.yml
rundock-1.0.2 .rubocop.yml
rundock-1.0.1 .rubocop.yml
rundock-1.0.0 .rubocop.yml
rundock-0.5.8 .rubocop.yml
rundock-0.5.7 .rubocop.yml