Sha256: fa4e66ea747b6f61a14aaeaa3828a4b7ee3db0f578c6e462beb95a2daa2a1005

Contents?: true

Size: 899 Bytes

Versions: 3

Compression:

Stored size: 899 Bytes

Contents

AllCops:
  TargetRubyVersion: 3.3
  NewCops: enable
  SuggestExtensions: true

  Include:
    - spec/**/*.rb
    - lib/**/*.rb

  Exclude:
    - vendor/**/*

require:
  - rubocop-performance
  - rubocop-rspec
  - rubocop-rake

Layout/LineLength:
  Max: 120

Metrics/BlockLength:
  Exclude:
    - spec/**/*_spec.rb
    - "*.gemspec"

Metrics/MethodLength:
  Max: 10

RSpec/NamedSubject:
  Enabled: false

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Style/Documentation:
  Enabled: false

Style/SymbolArray:
  EnforcedStyle: brackets

Style/WordArray:
  EnforcedStyle: brackets

Style/ClassAndModuleChildren:
  EnforcedStyle: compact

Style/NumberedParametersLimit:
  Max: 2

RSpec/MultipleExpectations:
  Enabled: false

RSpec/NestedGroups:
  Max: 5

RSpec/ExampleLength:
  Enabled: false

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
oapi-0.1.3 .rubocop.yml
oapi-0.1.2 .rubocop.yml
oapi-0.1.1 .rubocop.yml