zf

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

ignore_file.ex (239B)


      1 defmodule Dialyxir.Formatter.IgnoreFile do
      2   @moduledoc false
      3 
      4   @behaviour Dialyxir.Formatter
      5 
      6   @impl Dialyxir.Formatter
      7   def format({_tag, {file, _line}, {warning_name, _arguments}}) do
      8     ~s({"#{file}", :#{warning_name}},)
      9   end
     10 end