Sha256: d344af7cf0d52294bc7b5f50c07b389a84252ac5aa34335f592a9cc0ddfda330

Contents?: true

Size: 1022 Bytes

Versions: 4

Compression:

Stored size: 1022 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/**/*
    - config/**/*
    - build/**/*
    - gemfiles/**/*

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

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

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

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

# Allow deeper nesting because of the predefined/non-predefined -
# bang/non-bang cases.
RSpec/NestedGroups:
  Max: 4

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jabber_admin-1.6.0 .rubocop.yml
jabber_admin-1.5.1 .rubocop.yml
jabber_admin-1.5.0 .rubocop.yml
jabber_admin-1.4.0 .rubocop.yml