hanami-router/.rubocop.yml

23 lines
509 B
YAML

# Please keep AllCops, Bundler, Style, Metrics groups and then order cops
# alphabetically
inherit_from:
- https://raw.githubusercontent.com/hanami/devtools/main/.rubocop.yml
Lint/EmptyBlock:
Exclude:
- "spec/**/*.rb"
Metrics/ParameterLists:
Exclude:
- "lib/hanami/router.rb"
Naming/MethodParameterName:
AllowedNames:
- 'as'
- 'at'
- 'to'
Style/FormatStringToken:
Enabled: false
Style/RescueStandardError:
Enabled: false
Style/CommentedKeyword:
Exclude:
- "spec/**/*.rb"