1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- Layout/AccessModifierIndentation:
- EnforcedStyle: indent
- Layout/SpaceInsideHashLiteralBraces:
- EnforcedStyle: space
- Metrics/BlockNesting:
- Max: 2
- Metrics/LineLength:
- AllowURI: true
- Enabled: false
- Metrics/MethodLength:
- CountComments: false
- Max: 10
- Metrics/ModuleLength:
- Max: 100
- Metrics/ParameterLists:
- Max: 4
- CountKeywordArgs: true
- Style/CollectionMethods:
- Enabled: true
- PreferredMethods:
- find_all: 'select'
- Style/Documentation:
- Enabled: false
- Style/DoubleNegation:
- Enabled: false
- Style/FrozenStringLiteralComment:
- Enabled: false
- Style/TrailingCommaInLiteral:
- EnforcedStyleForMultiline: 'comma'
- Style/RegexpLiteral:
- Enabled: false
|