If we have code the goes over the line limit, like
if primal_name isa Symbol || Meta.isexpr(primal_name, :(.)) || Meta.isexpr(primal_name, :curly)
# do stuff
end
How should that be wrapped?
I think our preference would be for something like this
if (
primal_name isa Symbol ||
Meta.isexpr(primal_name, :(.)) ||
Meta.isexpr(primal_name, :curly)
)
# do stuff
end
does that seem right?