Packages

Conversion of digraph graphs to external file formats.

Current section

Files

Jump to
digraph_export rebar.config
Raw

rebar.config

{minimum_otp_vsn, "20.0"}.
{erl_opts, [debug_info,
{warn_format, 1},
warn_export_all,
warn_export_vars,
warn_obsolete_guard,
warn_unused_import]
}.
{deps, []}.
{plugins, [rebar3_hex]}.
{dialyzer, [{plt_prefix, "digraph_export"},
{warnings, [unmatched_returns,
error_handling,
race_conditions,
underspecs]}]
}.
{xref_warnings, true}.
{profiles, [{native, [{erl_opts, [{native, o3},
{d, 'NATIVE'}]}]
},
{test, [{erl_opts, [{d, 'TEST'}]},
{deps, [meck,
proper]},
{plugins, [geas_rebar3,
rebar3_lint,
rebar3_proper]},
{dialyzer, [{plt_prefix, "digraph_export_test"}]}]
},
{markdown, [{deps, [edown]},
{edoc_opts, [{doclet, edown_doclet},
{top_level_readme, {"./README.md",
"http://github.com/jkrukoff/digraph_export"}}]}]
}]
}.