Sha256: 5a294d93ff5dbc8496fb4f8d9aa151627017ba8d46cefce6c8719292fd336571

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 KB

Contents

inherit_from:
  - https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml

AllCops:
  TargetRubyVersion: 2.7

# local repo-specific modifications
# ...
Style/StringLiterals:
  Enabled: false

Metrics/BlockLength:
  Enabled: false

Rails:
  RunRailsCops: true

Metrics/AbcSize:
  Max: 36

Metrics/CyclomaticComplexity:
  Max: 9

# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
Layout/LineLength:
  Max: 82

# Check cyclomatic complexity instead.
Metrics/MethodLength:
  Enabled: false
Metrics/ClassLength:
  Enabled: false

Metrics/PerceivedComplexity:
  Max: 9

# Trailing commas make for clearer diffs because the last line won't appear
# to have been changed, as it would if it lacked a comma and had one added.
Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma
Style/TrailingCommaInArguments:
  EnforcedStyleForMultiline: comma

Layout/EmptyLines:
  Enabled: false

Layout/EmptyLinesAroundBlockBody:
  Enabled: false
Layout/EmptyLinesAroundMethodBody:
  Enabled: false
Layout/EmptyLinesAroundClassBody:
  Enabled: false
Layout/EmptyLinesAroundModuleBody:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
id_pack-1.0.3 .rubocop.yml
id_pack-1.0.2 .rubocop.yml