Current section

Files

Jump to
credo lib credo cli command list output flycheck.ex
Raw

lib/credo/cli/command/list/output/flycheck.ex

defmodule Credo.CLI.Command.List.Output.FlyCheck do
alias Credo.CLI.Output.Formatter.Flycheck
alias Credo.Execution
def print_before_info(_source_files, _exec), do: nil
def print_after_info(_source_files, exec, _time_load, _time_run) do
exec
|> Execution.get_issues()
|> Flycheck.print_issues()
end
end