DannyBen/runfile

View on GitHub
.rubocop.yml

Summary

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

inherit_gem:
  rentacop:
    - rentacop.yml
    - rspec.yml

inherit_mode:
  merge:
    - Include
    - Exclude

AllCops:
  TargetRubyVersion: 3.1
  Include:
    - '**/runfile'
    - '**/*.runfile'
  Exclude:
    - int/**/*
    - debug.rb
    - dev/**/*
    - spec/integration/**/*
    - spec/tmp/**/*

RSpec/ExampleLength:
  Exclude:
    - spec/behaviors/**/*