Sha256: 5f88437ef341cab80d906cf1f0c91f547db0d81aab29c100d16a318f2c0e9635

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

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/BlockLength:
  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

Style/NumericLiterals:
  Enabled: false

Style/NumericPredicate:
  Enabled: false

Style/MethodMissingSuper:
  Enabled: false

Style/MissingRespondToMissing:
  Enabled: false

Style/FormatStringToken:
  Enabled: false

Security/Open:
  Enabled: false

Lint/UnusedMethodArgument:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rundock-1.2.1 .rubocop.yml
rundock-1.2.0 .rubocop.yml