.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  # TargetRubyVersion: '3.0'
  NewCops: enable
  Exclude:
  - 'vendor/**/*'

Style/StringLiterals:
  Enabled: true
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  Enabled: true
  EnforcedStyle: double_quotes

Layout/LineLength:
  Max: 120