.template.debug.html
Analysis in <%= File.cwd!() %> took <%= @time_total %> ms (<%= @time_load %> ms to load, <%= @time_run %> ms running checks)
Please note that these are cumulative timings across all cores, therefore an individual file or check can account for more time than the overall time spent.
| | Check | File | Time (ms) | | Slowest Files | <%= for {filename, time} <- Enum.take(@file_timings, 15) do %> | <%= filename %> | <%= floor(time / 1000) %> | | <% end %> | | | Slowest Checks | <%= for {check, time} <- Enum.take(@check_timings, 15) do %> <%= check |> to_string() |> String.replace(~r/^Elixir./, "") %> | | <%= floor(time / 1000) %> | | <% end %> | | | Slowest Checks/Files | <%= for {{check, filename}, time} <- Enum.take(@check_file_timings, 15) do %> <%= check |> to_string() |> String.replace(~r/^Elixir./, "") %> | <%= filename %> | <%= floor(time / 1000) %> | | <% end %> | | | Fastest Checks/Files | <%= for {{check, filename}, time} <- Enum.take(Enum.reverse(@check_file_timings), 15) do %> <%= check |> to_string() |> String.replace(~r/^Elixir./, "") %> | <%= filename %> | <%= floor(time / 1000) %> | | <% end %> | |