Packages

A rebar plugin to transform RDL files into Erlang modules.

Current section

Files

Jump to
rebar3_rdl rebar.config
Raw

rebar.config

{project_plugins, [rebar3_ex_doc, erlfmt]}.
{erl_opts, [debug_info]}.
{deps, []}.
{ex_doc, [
{extras, [
{'CHANGELOG.md', #{title => <<"Changelog">>}},
{'README.md', #{title => <<"Overview">>}},
{'LICENSE', #{title => <<"License">>}}
]},
{main, <<"readme">>},
{source_url, <<"https://github.com/joaohf/rebar3_rdl">>},
{api_reference, false}
]}.
{dialyzer, [
{warnings, [
no_unknown,
no_undefined_callbacks
]}
]}.
{hex, [{doc, ex_doc}]}.
{erlfmt, [write]}.