class RuboCop::Cop::Rails::Exit

def right_argument_count?(arg_nodes)

`exit` implementation than the one we are preventing.
More than 1 argument likely means it is a different
def right_argument_count?(arg_nodes)
  arg_nodes.size <= 1
end