class RuboCop::Cop::Lint::UnusedMethodArgument

def ignored_method?(body)

def ignored_method?(body)
  (cop_config['IgnoreEmptyMethods'] && body.nil?) ||
    (cop_config['IgnoreNotImplementedMethods'] && not_implemented?(body))
end