Sha256: 932abf576a8f9c3d8f28eb52f601e5c9409e78df8b04d62b63202735ff952b52

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 KB

Contents

require: rubocop-rspec

inherit_from:
  - .rubocop_todo.yml

AllCops:
  Exclude:
    - bin/*
    - poms.gemspec
    - vendor/**/*

Style/Documentation:
  Exclude:
    - 'lib/poms/has_ancestors.rb'
    - spec/**/*_spec.rb

Style/BlockDelimiters:
  Exclude:
    - 'spec/**/*.rb'

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*.rb'

Style/AndOr:
  Exclude:
    - 'lib/poms.rb' # here we do rely on how `or` has lower precedence than `||`
    - 'lib/poms/configuration.rb' # here we do rely on how `or` has lower precedence than `||`

Style/FrozenStringLiteralComment:
  Enabled: false

Style/ModuleFunction:
  Enabled: false

ModuleLength:
  Exclude:
    - spec/**/*_spec.rb # specs are only in module for easier access to functions

RSpec/ExampleLength:
  Max: 15

Layout/AlignParameters:
  EnforcedStyle: with_fixed_indentation

Layout/FirstParameterIndentation:
  EnforcedStyle: consistent

Layout/IndentArray:
  EnforcedStyle: consistent

Layout/IndentHash:
  EnforcedStyle: consistent

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Layout/MultilineOperationIndentation:
  EnforcedStyle: indented

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
poms-2.6.0 .rubocop.yml
poms-2.5.1 .rubocop.yml
poms-2.5.0 .rubocop.yml
poms-2.4.0 .rubocop.yml