Skip to content

Commit

Permalink
added missing rebar.config to bracket-push exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
juhlig committed Jun 15, 2018
1 parent 2e7da6f commit 659ee71
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions exercises/bracket-push/rebar.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
%% Erlang compiler options
{erl_opts, [debug_info]}.

{deps, [{erl_exercism, "0.1.1"}]}.

{dialyzer, [
{warnings, [underspecs, no_return]},
{get_warnings, true},
{plt_apps, top_level_deps}, % top_level_deps | all_deps
{plt_extra_apps, []},
{plt_location, local}, % local | "/my/file/name"
{plt_prefix, "rebar3"},
{base_plt_apps, [stdlib, kernel, crypto]},
{base_plt_location, global}, % global | "/my/file/name"
{base_plt_prefix, "rebar3"}
]}.

%% eunit:test(Tests)
{eunit_tests, []}.
%% Options for eunit:test(Tests, Opts)
{eunit_opts, [verbose]}.

%% == xref ==

{xref_warnings, true}.

%% xref checks to run
{xref_checks, [undefined_function_calls, undefined_functions,
locals_not_used, exports_not_used,
deprecated_function_calls, deprecated_functions]}.

0 comments on commit 659ee71

Please sign in to comment.