Sha256: c51ca5c92bcc389b0014bcf711f18d1ba519282a5055d65411879cae355653f4

Contents?: true

Size: 813 Bytes

Versions: 6

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: 5.2
  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

6 entries across 6 versions & 1 rubygems

Version Path
immoscout-1.6.5 .rubocop.yml
immoscout-1.6.4 .rubocop.yml
immoscout-1.6.3 .rubocop.yml
immoscout-1.6.2 .rubocop.yml
immoscout-1.6.1 .rubocop.yml
immoscout-1.6.0 .rubocop.yml