Sha256: 71b283c0ae340445d36f5b33c1fa58431cd03f2329c1bd74be5d2ebb95463322

Contents?: true

Size: 813 Bytes

Versions: 4

Compression:

Stored size: 813 Bytes

Contents

require:
  - rubocop-rspec
  - rubocop-rails

Rails:
  Enabled: true

Style/Documentation:
  Enabled: true

AllCops:
  NewCops: enable
  SuggestExtensions: false
  DisplayCopNames: true
  TargetRubyVersion: 2.7
  TargetRailsVersion: 6.1
  Exclude:
    - bin/**/*
    - vendor/**/*
    - build/**/*
    - gemfiles/**/*

Metrics/BlockLength:
  Exclude:
    - Rakefile
    - '*.gemspec'
    - spec/**/*.rb
    - '**/*.rake'
    - doc/**/*.rb

# We stay at 80 characters per line.
# See: https://rubystyle.guide/#max-line-length
Layout/LineLength:
  Max: 80

# MFA is not yet enabled for our gems yet.
Gemspec/RequireMFA:
  Enabled: false

# We use memoized helpers all over the place to construct inputs and output
# which can be customized at nested contexts easily.
RSpec/MultipleMemoizedHelpers:
  Enabled: false

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
immoscout-1.9.0 .rubocop.yml
immoscout-1.8.1 .rubocop.yml
immoscout-1.8.0 .rubocop.yml
immoscout-1.7.0 .rubocop.yml