Packages

nifi site-to-site protocol

Current section

Files

Jump to
nifi_s2s rebar.config
Raw

rebar.config

{plugins, [rebar3_lint]}.
{alias, [
{check, [xref,
lint,
{eunit, "-c"},
{ct, "-c"},
{cover, "-v --min_coverage=80"}]}
]}.
{deps, [{jsx, "2.11.0"},
{uuid, "2.0.0", {pkg, uuid_erl}}]}.
{profiles, [
{test, [
{plugins, [coveralls]},
{deps, []}
]}
]}.
{dialyzer, [
{warnings, [no_return, error_handling]},
{plt_apps, top_level_deps},
{plt_extra_apps, []},
{plt_location, local},
{base_plt_apps, [erts, stdlib, kernel]},
{base_plt_location, global}
]}.
{xref_checks, [undefined_function_calls,
undefined_functions,
deprecated_function_calls,
deprecated_functions]}.
{xref_ignores, []}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_excl_mods, []}.
{coveralls_coverdata, "_build/test/cover/*.coverdata"}.
{coveralls_service_name, "travis-ci"}.
{edoc_opts, [
{def, [
{version, "0.0.2"},
{years, "2020"}
]}
]}.