33 lines
470 B
YAML
33 lines
470 B
YAML
AllCops:
|
|
TargetRubyVersion: 3.3
|
|
NewCops: enable
|
|
SuggestExtensions: false
|
|
|
|
Style/StringLiterals:
|
|
EnforcedStyle: double_quotes
|
|
|
|
Style/StringLiteralsInInterpolation:
|
|
EnforcedStyle: double_quotes
|
|
|
|
Style/Documentation:
|
|
Exclude:
|
|
- "test/**/*"
|
|
- "exe/**/*"
|
|
|
|
Layout/LineLength:
|
|
Max: 100
|
|
|
|
Metrics/AbcSize:
|
|
Max: 30
|
|
|
|
Metrics/MethodLength:
|
|
Max: 25
|
|
|
|
Metrics/ClassLength:
|
|
Max: 400
|
|
|
|
Metrics/BlockLength:
|
|
Exclude:
|
|
- "test/**/*"
|
|
- "volumen.gemspec"
|