.rubocop.yml 366 B

12345678910111213141516171819202122232425
  1. AllCops:
  2. TargetRubyVersion: 3.1
  3. NewCops: enable
  4. Metrics/BlockLength:
  5. Max: 60
  6. Layout/LeadingEmptyLines:
  7. Enabled: false
  8. Layout/EmptyLinesAroundMethodBody:
  9. Enabled: false
  10. Layout/EmptyLinesAroundClassBody:
  11. Enabled: false
  12. Style/MethodDefParentheses:
  13. Enabled: false
  14. Style/NegatedIf:
  15. Enabled: false
  16. Style/FrozenStringLiteralComment:
  17. Enabled: false