Current section

Files

Jump to
counters rebar.config
Raw

rebar.config

%% -*- mode: erlang -*-
{erl_opts, [debug_info,
warn_unused_vars,
warnings_as_errors,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
%% warn_missing_spec,
warn_untyped_record]}.
{deps, []}.
{shell, [{apps, [counters]}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_excl_mods, [
]}.
{coveralls_coverdata , "_build/test/cover/eunit.coverdata"}.
{coveralls_service_name , "travis-ci"}.
{xref_extra_paths,[]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
deprecated_function_calls,deprecated_functions]}.
{profiles, [{docs, [{deps, [{edown, "0.8.1"}]},
{edoc_opts,
[{doclet, edown_doclet},
{dir, "doc"},
{subpackages, true},
{overview, "doc/overview.md"},
{top_level_readme,
{"./README.md",
"https://github.com/deadtrickster/counters.erl"}}]}]},
{test, [{plugins, [{coveralls, "1.4.0"},
{rebar3_elvis_plugin, "0.0.4"}]}]},
{benchmark, [{src_dirs, ["src", "benchmark"]},
{deps, [{'erlang-color',
{git, "https://github.com/julianduque/erlang-color", {branch, "master"}}}]}]}]}.