summaryrefslogtreecommitdiff
path: root/rebar.config.sample
diff options
context:
space:
mode:
authorStuart Thackray <stuart.thackray@gmail.com>2018-12-11 08:53:29 +0200
committerStuart Thackray <stuart.thackray@gmail.com>2018-12-11 08:53:29 +0200
commitebfa797c1f5d038b99beaf658757d974412a15c7 (patch)
tree9765880a7f0119c265d85f8bac7afea8d9542080 /rebar.config.sample
parent71187514dabdd94aa333495d92df84a2e750099f (diff)
parent8e28561d4e14ea85d42d17ab5a0f17f5f1c696d2 (diff)
Update from Upstream
Diffstat (limited to 'rebar.config.sample')
-rw-r--r--rebar.config.sample12
1 files changed, 8 insertions, 4 deletions
diff --git a/rebar.config.sample b/rebar.config.sample
index f57f8dc..c255e49 100644
--- a/rebar.config.sample
+++ b/rebar.config.sample
@@ -57,6 +57,9 @@
%% is `false'
{cover_enabled, false}.
+%% Modules to exclude from cover
+{cover_excl_mods, []}.
+
%% Options to pass to cover provider
{cover_opts, [verbose]}.
@@ -128,7 +131,8 @@
%% Paths to miscellaneous Erlang files to compile for an app
%% without including them in its modules list
{extra_src_dirs, []}.
-
+%% Path where custom rebar3 templates could be found
+{template_dir, []}.
%% == EDoc ==
@@ -140,7 +144,7 @@
%% == Escript ==
%% name of the main OTP application to boot
-{escript_main_app, application}
+{escript_main_app, application}.
%% Name of the resulting escript executable
{escript_name, "application"}.
%% apps (other than main and deps) to be included
@@ -154,7 +158,7 @@
%% == EUnit ==
%% eunit:test(Tests)
-{eunit_tests, [{application, rebar3}]}
+{eunit_tests, [{application, rebar3}]}.
%% Options for eunit:test(Tests, Opts)
{eunit_opts, [verbose]}.
%% Additional compile options for eunit. erl_opts is also used
@@ -194,7 +198,7 @@
%% Only clean, ct, compile, eunit, release, and tar can be hooked around
%% runs 'clean' before 'compile'
-{provider_hooks, [{pre, [{compile, clean}]}]}
+{provider_hooks, [{pre, [{compile, clean}]}]}.
%% == Releases ==