Packages

Zod-like parsing and validation for Erlang

Current section

Files

Jump to
zz rebar.config
Raw

rebar.config

{minimum_otp_vsn, "27"}.
{erl_opts, [debug_info]}.
{deps, []}.
{plugins, [rebar3_hex, rebar3_proper, {rebar3_codecov, "0.7.0"}]}.
{cover_export_enabled, true}.
{project_plugins, [erlfmt, rebar3_ex_doc]}.
{erlfmt, [write]}.
{ex_doc, [
{source_url, <<"https://github.com/denizdogan/zz">>},
{extras, [
<<"README.md">>,
<<"CHANGELOG.md">>,
<<"CONTRIBUTING.md">>,
<<"CODE_OF_CONDUCT.md">>,
<<"LICENSE.md">>
]},
{main, <<"readme">>}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{dialyzer, [{plt_extra_apps, [eunit]}]}.
{profiles, [
{test, [
{deps, [
{proper, "1.5.0"},
{eqwalizer_support,
{git_subdir, "https://github.com/whatsapp/eqwalizer.git", {branch, "main"},
"eqwalizer_support"}}
]}
]}
]}.