pchwbm/.rubocop.yml
Gregory Ballantine 1d7b9c8f0f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Initial project structure with dry/cli
2023-10-30 15:57:44 -04:00

23 lines
498 B
YAML

AllCops:
NewCops: enable
Layout/EmptyLinesAroundClassBody:
EnforcedStyle: 'empty_lines_except_namespace'
Layout/EmptyLinesAroundModuleBody:
EnforcedStyle: 'empty_lines_except_namespace'
Metrics/ClassLength:
Max: 150
Metrics/MethodLength:
AllowedMethods:
- 'start'
Style/ClassVars:
Enabled: false
Style/GlobalVars:
Enabled: false
Style/MethodCallWithoutArgsParentheses:
Enabled: false
Style/MethodCallWithArgsParentheses:
Enabled: true
Style/RedundantReturn:
Enabled: false