19 lines
482 B
YAML
19 lines
482 B
YAML
|
AllCops:
|
||
|
TargetRubyVersion: 2.5 # System ruby on Ubuntu 18.04
|
||
|
NewCops: enable
|
||
|
Layout/HashAlignment:
|
||
|
EnforcedHashRocketStyle: [ key, table ]
|
||
|
EnforcedColonStyle: [ key, table ]
|
||
|
Layout/LineLength:
|
||
|
Max: 128
|
||
|
Metrics:
|
||
|
Enabled: false
|
||
|
Style/AsciiComments:
|
||
|
AllowedChars: [ © ]
|
||
|
Style/Documentation:
|
||
|
Enabled: false
|
||
|
Style/TrailingCommaInArrayLiteral:
|
||
|
EnforcedStyleForMultiline: consistent_comma
|
||
|
Style/TrailingCommaInHashLiteral:
|
||
|
EnforcedStyleForMultiline: consistent_comma
|