Current section
Files
Jump to
Current section
Files
lib/mix/tasks/project/gen/quokka_format.ex
defmodule Mix.Tasks.Project.Gen.QuokkaFormat do
@shortdoc "Adds Quokka to formatter plugins"
@moduledoc "Adds `Quokka` to the formatter's `plugins` after the dependency is fetched."
use Igniter.Mix.Task
@impl Igniter.Mix.Task
def igniter(igniter) do
Igniter.add_notice(igniter, """
Add Quokka to plugins in .formatter.exs:
plugins: [Quokka]
""")
end
end