game-data/.rubocop.yml
Gregory Ballantine fa9245d7ec
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
Added rubocop for style checking; added woodpecker CI config
2023-12-08 12:17:13 -05:00

22 lines
469 B
YAML

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