rebar3_dialyzer_html
A rebar plugin to generate HTML reported from dialyzer raw results.
Intro blog post: https://www.srijn.net/erlang-dialyzer-html-reports-rebar3/
Build
$ rebar3 compileUse
Make sure you’re using rebar3 version
3.15or later.Add the plugin to your rebar config:
{plugins, [ {rebar3_dialyzer_html, {git, "https://github.com/srijan/rebar3_dialyzer_html.git", {branch, "main"}}} ]}.Select raw format for the dialyzer warnings file generated by rebar3:
{dialyzer, [ {output_format, raw} ]}.Run the
dialyzer_htmlrebar3 command:$ rebar3 dialyzer_html ===> Fetching rebar3_dialyzer_html ===> Compiling rebar3_dialyzer_html ===> Generating Dialyzer HTML Report ===> HTML Report written to _build/default/dialyzer_report.html
Changelog
- 0.2.0: Basic functionality using JS library
- 0.1.0: Pre-Release