zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

raw.ex (190B)


      1 defmodule Dialyxir.Formatter.Raw do
      2   @moduledoc false
      3 
      4   @behaviour Dialyxir.Formatter
      5 
      6   @impl Dialyxir.Formatter
      7   def format(warning) do
      8     inspect(warning, limit: :infinity)
      9   end
     10 end