DannyBen/sting

View on GitHub
.rubocop.yml

Summary

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

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

AllCops:
  TargetRubyVersion: 3.0

# Defining `respond_to_missing?` with `true` breaks specs
Style/MissingRespondToMissing:
  Enabled: false

# Allow using `file1` in spec let
RSpec/IndexedLet:
  Enabled: false