Sha256: bdb82442a84e866faddf7002a12736221badd03e7a94b9593ec689385571e9fa

Contents?: true

Size: 846 Bytes

Versions: 4

Compression:

Stored size: 846 Bytes

Contents

require:
- rubocop-rake
- rubocop-rspec

Layout/LineLength:
  Max: 100

AllCops:
  Exclude:
  - 'db/schema.rb'
  - 'vendor/**/*'
  TargetRubyVersion: 3.1
  NewCops: enable

Metrics/AbcSize:
  Max: 21

Metrics/BlockLength:
  Max: 35
  Exclude:
  - 'spec/**/*_spec.rb'
  - 'Rakefile'
  - '*.gemspec'

Metrics/MethodLength:
  Max: 25

Metrics/ModuleLength:
  Max: 160
  Exclude:
  - 'spec/**/*_spec.rb'

Metrics/ClassLength:
  Max: 300
  Exclude:
  - 'spec/**/*_spec.rb'

Gemspec/RequireMFA:
  Enabled: false

Gemspec/DevelopmentDependencies:
  Enabled: false

Style/MixinUsage:
  Exclude:
  - "bin/console"

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringConcatenation:
  Exclude:
  - 'Rakefile'

RSpec/ExampleLength:
  Max: 10

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
metatron-0.7.0 .rubocop.yml
metatron-0.6.1 .rubocop.yml
metatron-0.6.0 .rubocop.yml
metatron-0.5.0 .rubocop.yml