1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Fix a warning for obsolete parameter

```
Warning: obsolete parameter `IgnoredMethods` (for `Metrics/BlockLength`) found in .rubocop.yml
`IgnoredMethods` has been renamed to `AllowedMethods` and/or `AllowedPatterns`.
```
This commit is contained in:
ydah 2022-09-23 06:16:59 +09:00
parent f1588b82f1
commit 0ec9b138c4

View file

@ -31,7 +31,7 @@ Metrics/BlockLength:
- 'spec/**/*'
- 'lib/capybara/spec/**/*'
- 'capybara.gemspec'
IgnoredMethods:
AllowedMethods:
- Capybara.add_selector
- Capybara::Selector::FilterSet.add