31 lines
552 B
YAML
31 lines
552 B
YAML
|
AllCops:
|
||
|
Exclude:
|
||
|
- 'vendor/**/*'
|
||
|
- '.git/**/*'
|
||
|
- 'bin/rubocop'
|
||
|
- 'slackbuilds/**/*'
|
||
|
|
||
|
Style/Documentation:
|
||
|
Enabled: false
|
||
|
|
||
|
Style/TrailingCommaInHashLiteral:
|
||
|
EnforcedStyleForMultiline: consistent_comma
|
||
|
|
||
|
Style/FrozenStringLiteralComment:
|
||
|
Exclude:
|
||
|
- '**/db/migrate/*'
|
||
|
|
||
|
Layout/MultilineMethodCallIndentation:
|
||
|
EnforcedStyle: indented
|
||
|
|
||
|
Layout/ArgumentAlignment:
|
||
|
EnforcedStyle: with_fixed_indentation
|
||
|
|
||
|
Layout/EndAlignment:
|
||
|
EnforcedStyleAlignWith: variable
|
||
|
|
||
|
Metrics/BlockLength:
|
||
|
ExcludedMethods:
|
||
|
- describe
|
||
|
- refine
|