dazzl-tv/mongoid-rspec-callbacks

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
---

require:
  - rubocop-performance
  - rubocop-rspec

AllCops:
  Exclude:
    - bin/**/*
    - vendor/**/*
  TargetRubyVersion: 2.6
  NewCops: enable

### NAMINGS ###
Naming/AccessorMethodName:
  Exclude:
    - lib/matchers/set_callbacks.rb

### METRICS ###
Metrics/BlockLength:
  Exclude:
    - mongoid-rspec-callbacks.gemspec

### LAYOUTS ###
Layout/LineLength:
  Max: 80
  Exclude:
    - spec/**/*

### SECURITY ###
Security/YAMLLoad:
  Enabled: false

### STYLES ###
Style/RescueStandardError:
  Enabled: false

Style/Documentation:
  Enabled: false