Sha256: f0ab6ac253a527c7ab114af6a1bf16b14d2d075f5726b5e06e012750023542fc

Contents?: true

Size: 1.33 KB

Versions: 11

Compression:

Stored size: 1.33 KB

Contents

require:
  - rubocop-rspec
  - rubocop-rails

Rails:
  Enabled: true

Style/Documentation:
  Enabled: true

AllCops:
  NewCops: enable
  SuggestExtensions: false
  DisplayCopNames: true
  TargetRubyVersion: 2.5
  TargetRailsVersion: 5.2
  Exclude:
    - bin/**/*
    - vendor/**/*
    - build/**/*
    - gemfiles/**/*
    - spec/dummy/**/*

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

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

# We stay with the original Ruby Style Guide recommendation.
Layout/LineLength:
  Max: 80

# Document all the things.
Style/DocumentationMethod:
  Enabled: true
  RequireForNonPublicMethods: true

# It's a deliberate idiom in RSpec.
# See: https://github.com/bbatsov/rubocop/issues/4222
Lint/AmbiguousBlockAssociation:
  Exclude:
    - "spec/**/*"

# Because +expect_any_instance_of().to have_received()+ is not
# supported with the +with(hash_including)+ matchers
RSpec/MessageSpies:
  EnforcedStyle: receive

# Because nesting makes sense here to group the feature tests
# more effective. This increases maintainability.
RSpec/NestedGroups:
  Max: 4

# Disable regular Rails spec paths.
RSpec/FilePath:
  Enabled: false

# Because we just implemented the ActiveRecord API.
Rails/SkipsModelValidations:
  Enabled: false

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
factory_bot_instrumentation-1.1.5 .rubocop.yml
factory_bot_instrumentation-1.1.4 .rubocop.yml
factory_bot_instrumentation-1.1.3 .rubocop.yml
factory_bot_instrumentation-1.1.2 .rubocop.yml
factory_bot_instrumentation-1.1.1 .rubocop.yml
factory_bot_instrumentation-1.1.0 .rubocop.yml
conversejs-3.5.0 .rubocop.yml
factory_bot_instrumentation-1.0.2 .rubocop.yml
factory_bot_instrumentation-1.0.1 .rubocop.yml
factory_bot_instrumentation-1.0.0 .rubocop.yml
conversejs-3.4.0 .rubocop.yml