Sha256: 6d4c4c6aae3f304684c200b505c461c2349bd04a97dd2fb2f849f32b38b115bc

Contents?: true

Size: 690 Bytes

Versions: 6

Compression:

Stored size: 690 Bytes

Contents

inherit_from: .rubocop_todo.yml

require: rubocop-rspec

AllCops:
  Exclude:
    - '*.gemspec'
    - 'bin/**/*'
    - 'db/**/*'
    - 'spec/fixtures/**/*'
    - 'vendor/**/*'
  TargetRubyVersion: 2.7
  NewCops: enable

# Use single-quoted strings where possible
Style/StringLiterals:
  Enabled: true
  EnforcedStyle: single_quotes

# Prevent false positives because we have fields named "subject"
RSpec/SubjectDeclaration:
  Enabled: false

RSpec/NamedSubject:
  Enabled: false

# Allow long test blocks with multiple expectations
RSpec/MultipleExpectations:
  Enabled: false

RSpec/ExampleLength:
  Enabled: false

Naming/MethodName:
  Enabled: false

Naming/VariableName:
  Enabled: false

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mods_display-1.6.2 .rubocop.yml
mods_display-1.6.1 .rubocop.yml
mods_display-1.6.0 .rubocop.yml
mods_display-1.5.0 .rubocop.yml
mods_display-1.4.0 .rubocop.yml
mods_display-1.3.5 .rubocop.yml