chore: format

This commit is contained in:
Zach Daniel 2024-07-31 14:50:13 -04:00
parent 1106f572bb
commit af91431010

View file

@ -21,7 +21,9 @@ defmodule Mix.Tasks.Igniter.New do
name =
case positional do
[name | _] -> name
[name | _] ->
name
_ ->
raise ArgumentError, """
Required positional argument missing: project_name.
@ -33,7 +35,8 @@ defmodule Mix.Tasks.Igniter.New do
end
if String.starts_with?(name, "-") do
raise ArgumentError, "The first positional argument must be a project name that starts with a dash, got: #{name}"
raise ArgumentError,
"The first positional argument must be a project name that starts with a dash, got: #{name}"
end
{options, argv, _errors} =