Sha256: 0df8077b76de5ce466677e0b43113a7ac13c39f556e25e037e00ea3dc2e93a8d

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

require: rubocop-rspec
inherit_from: .rubocop_todo.yml

AllCops:
  DisplayCopNames: true
  Include:
    - '**/Rakefile'
  Exclude:
    - 'vendor/**/*'
    - 'spec/internal/bin/*'
    - 'spec/internal/db/schema.rb'

Metrics/LineLength:
  Enabled: false

Style/CollectionMethods:
  PreferredMethods:
    collect: 'map'
    collect!: 'map!'
    inject: 'reduce'
    detect: 'find'
    find_all: 'select'

Style/ClassAndModuleChildren:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/StringLiterals:
  Enabled: false

Style/SignalException:
  Enabled: false

Style/IndentationConsistency:
  EnforcedStyle: rails

Style/PredicateName:
  Exclude:
    - spec/services/tempfile_service_spec.rb

RSpec/ExampleWording:
  CustomTransform:
    be: is
    have: has
    not: does not
    NOT: does NOT
  IgnoredWords:
    - only

RSpec/FilePath:
  Enabled: false

RSpec/InstanceVariable:
  Enabled: false

RSpec/DescribeClass:
  Exclude:
    - spec/units/config_spec.rb
    - spec/units/transcoding_spec.rb

RSpec/AnyInstance:
  Exclude:
    - spec/processors/image_spec.rb
    - spec/units/transcoding_spec.rb

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hydra-derivatives-3.3.2 .rubocop.yml
hydra-derivatives-3.3.1 .rubocop.yml
hydra-derivatives-3.3.0 .rubocop.yml
hydra-derivatives-3.2.2 .rubocop.yml
hydra-derivatives-3.2.1 .rubocop.yml
hydra-derivatives-3.2.0 .rubocop.yml
hydra-derivatives-3.1.4 .rubocop.yml