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"]}.
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}.
{cover_enabled, true}.
{plugins, [rebar_covertool]}.
{covertool_eunit, ".eunit/eunit.coverage.xml"}.
{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, [
{deps, [
{proper, "1.1.1-beta"},
{covertool, {git, "https://github.com/idubrov/covertool.git", {branch, "master"}}}
]}
]}
]}.