Closed
Description
Currently, _
is replaced by a placeholder. Variables starting with an underscore _like_this
should be replaced, but _
has a special meaning that should be preserved.
Input
def foo(_), do: :ok
Desired output
def(placeholder_1(_)) do
:ok
end
Current output
def(placeholder_1(placeholder_2)) do
:ok
end
Metadata
Metadata
Assignees
Labels
No labels