mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
417 B
18 lines
417 B
#
|
|
# Configuration for obsoletion.
|
|
#
|
|
# See: https://docs.rubocop.org/rubocop/extensions.html#config-obsoletions
|
|
#
|
|
extracted:
|
|
Rails/*: ~
|
|
|
|
# Cop parameters that have been changed
|
|
# Can be treated as a warning instead of a failure with `severity: warning`
|
|
changed_parameters:
|
|
- cops: Rails/FindEach
|
|
parameters: IgnoredMethods
|
|
alternatives:
|
|
- AllowedMethods
|
|
- AllowedPatterns
|
|
severity: warning
|