mattruggio/nay

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
require:
  - rubocop-rake
  - rubocop-rspec

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

Metrics/BlockLength:
  Max: 30
  IgnoredMethods:
    - describe

Metrics/MethodLength:
  Max: 20

RSpec/ExampleLength:
  Max: 10