Current section
Files
Jump to
Current section
Files
rebar.config
%% -*- mode: erlang; -*-
{erl_opts, [warnings_as_errors,
warn_export_all,
warn_unused_import
%% warn_untyped_record
]}.
{yrl_opts, [{verbose, true}]}.
{xref_checks, [undefined_function_calls]}.
{clean_files, [".eunit/*", "ebin/*.beam"]}.
{edoc_opts, [{dialyzer_specs, all},
{report_missing_type, true},
{report_type_mismatch, true},
{pretty_print, erl_pp},
{preprocess, true}]}.
{validate_app_modules, true}.
{deps,
[
]}.
{profiles, [
{test, [
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}
,{cover_enabled, true}
,{plugins, [rebar_covertool]}
,{covertool_eunit, ".eunit/eunit.coverage.xml"}
,{deps, [
{proper, {git, "https://github.com/manopapad/proper.git", {ref, "v1.2"}}},
{covertool, {git, "https://github.com/idubrov/covertool.git", {branch, "master"}}}
]}
]}
]}.