Current section
Files
Jump to
Current section
Files
rebar.config
{cover_enabled, true}.
{cover_export_enabled, true}.
{coveralls_coverdata, "_build/test/cover/eunit.coverdata"}.
{coveralls_service_name, "travis-ci"}.
{deps, [
{jiffy, "0.15.2"}
]}.
{erl_opts, [debug_info]}.
{profiles, [
{compile, [
{erl_opts, [
warnings_as_errors,
warn_export_all,
warn_export_vars,
warn_missing_spec,
warn_obsolete_guard,
warn_shadow_vars,
warn_untyped_record,
warn_unused_import,
warn_unused_vars
]}
]},
{test, [
{deps, [
{cowboy,
{git, "https://github.com/ninenines/cowboy.git", {tag, "2.4.0"}}}
]},
{plugins, [
{coveralls,
{git, "https://github.com/markusn/coveralls-erl", {branch, "master"}}}
]}
]}
]}.
{xref_checks, [
deprecated_functions,
deprecated_function_calls,
locals_not_used,
undefined_function_calls
]}.
{plugins, [rebar3_hex]}.