Current section

Files

Jump to
dialyxir lib dialyxir formatter raw.ex
Raw

lib/dialyxir/formatter/raw.ex

defmodule Dialyxir.Formatter.Raw do
@moduledoc false
@behaviour Dialyxir.Formatter
@impl Dialyxir.Formatter
def format(warning) do
inspect(warning, limit: :infinity)
end
end