format-staged/.rubocop.yml

17 lines
285 B
YAML
Raw Normal View History

2024-08-03 19:43:09 +02:00
require:
- rubocop-rake
2022-05-25 19:54:22 +02:00
AllCops:
NewCops: enable
TargetRubyVersion: 2.7
Exclude:
- "vendor/**/*"
2022-05-29 09:54:52 +02:00
Metrics/MethodLength:
Max: 15
Metrics/BlockLength:
Exclude:
- bin/git-format-staged # Long block for option parser is ok
2022-06-05 12:40:48 +02:00
- spec/**/*.rb