module RuboCop::Cop::Lint::UnusedArgument
def check_argument(variable)
def check_argument(variable) return if variable.should_be_unused? return if variable.referenced? message = message(variable) add_offense(variable.declaration_node.loc.name, message: message) do |corrector| autocorrect(corrector, variable.declaration_node) end end