class RuboCop::Cop::Lint::UnderscorePrefixedVariableName

def after_leaving_scope(scope, _variable_table)

def after_leaving_scope(scope, _variable_table)
  scope.variables.each_value do |variable|
    check_variable(variable)
  end
end