Running the current version of .rubocop.yml file there is a Warning:
On line No 19:
IgnoredMethods: ['describe']
The warning is
Warning: obsolete parameter IgnoredMethods (for Metrics/BlockLength) found in Decode-Morse-Code-Ruby/.rubocop.yml
IgnoredMethods has been renamed to AllowedMethods and/or AllowedPatterns.
Please modify on No 19 into
AllowedMethods: ['describe']
Running the current version of .rubocop.yml file there is a Warning: On line No 19:
IgnoredMethods: ['describe']
The warning is Warning: obsolete parameterIgnoredMethods
(forMetrics/BlockLength
) found in Decode-Morse-Code-Ruby/.rubocop.ymlIgnoredMethods
has been renamed toAllowedMethods
and/orAllowedPatterns
.Please modify on No 19 into
AllowedMethods: ['describe']