.rubocop.yml 678 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Layout/AccessModifierIndentation:
  2. EnforcedStyle: indent
  3. Layout/SpaceInsideHashLiteralBraces:
  4. EnforcedStyle: space
  5. Metrics/BlockNesting:
  6. Max: 2
  7. Metrics/LineLength:
  8. AllowURI: true
  9. Enabled: false
  10. Metrics/MethodLength:
  11. CountComments: false
  12. Max: 10
  13. Metrics/ModuleLength:
  14. Max: 100
  15. Metrics/ParameterLists:
  16. Max: 4
  17. CountKeywordArgs: true
  18. Style/CollectionMethods:
  19. Enabled: true
  20. PreferredMethods:
  21. find_all: 'select'
  22. Style/Documentation:
  23. Enabled: false
  24. Style/DoubleNegation:
  25. Enabled: false
  26. Style/FrozenStringLiteralComment:
  27. Enabled: false
  28. Style/TrailingCommaInLiteral:
  29. EnforcedStyleForMultiline: 'comma'
  30. Style/RegexpLiteral:
  31. Enabled: false