Sha256: 948d8f25b0785d45b088bfeaea60ab958eae61dd8e1c25632653575030304035

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

inherit_from: .rubocop_todo.yml

# Do not attempt to police vendored code
AllCops:
  NewCops: enable
  TargetRubyVersion: 3.0
  Exclude:
    - 'vendor/**/*'

Style/StringLiterals:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: false

Layout/LineLength:
  Enabled: false

Lint/AmbiguousRegexpLiteral:
  Enabled: false

Lint/RaiseException:
  Enabled: true

Lint/StructNewOverride:
  Enabled: true

# Stick to verbose until https://bugs.ruby-lang.org/issues/10177 is closed.
Style/PreferredHashMethods:
  EnforcedStyle: verbose

Layout/HashAlignment:
  EnforcedHashRocketStyle: table
  EnforcedColonStyle: table

Style/Not:
  Enabled: false

# comply with @ytti's exacting specifications
Style/CommandLiteral:
  EnforcedStyle: percent_x

Style/FormatString:
  EnforcedStyle: percent

Style/FormatStringToken:
  EnforcedStyle: unannotated

Style/HashEachMethods:
  Enabled: true

Style/HashTransformKeys:
  Enabled: true

Style/HashTransformValues:
  Enabled: true

Style/RescueModifier:
  Enabled: false

Style/SymbolProc:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/ParallelAssignment:
  Enabled: false

Metrics/MethodLength:
  Max: 45

## Metrics/AbcSize:
##   Max: 28

Metrics/ClassLength:
  Max: 200

## Metrics/CyclomaticComplexity:
##   Max: 7

Metrics/BlockLength:
  Max: 150

Metrics/ParameterLists:
  Max: 6

Lint/EmptyBlock:
  Enabled: false

require:
  - rubocop-rake
  - rubocop-minitest

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oxidized-0.29.1 .rubocop.yml
oxidized-0.29.0 .rubocop.yml