Skip to content

Instantly share code, notes, and snippets.

@jj1bdx
Forked from voluntas/rebar.config
Created March 6, 2011 07:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jj1bdx/857098 to your computer and use it in GitHub Desktop.
Save jj1bdx/857098 to your computer and use it in GitHub Desktop.
{erl_opts, [fail_on_warning, debug_info]}.
{xref_checks, [undefined_function_calls]}.
%% {eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{cover_enabled, true}.
{clean_files, [".eunit", "ebin/*.beam"]}.
{dialyzer_opts,
[{warnings,
[no_return,
no_unused,
no_improper_lists,
no_tuple_as_fun,
no_fun_app,
no_match,
no_opaque,
unmatched_returns,
error_handling,
race_conditions,
behaviours,
underspecs,
overspecs,
specdiffs]},
src]}.
{validate_app_modules, true}.
{deps,
[{meck, ".*", {git, "git://github.com/eproxus/meck.git", {branch, "master"}}},
{proper, ".*", {git, "git://github.com/manopapad/proper.git", {branch, "master"}}}
]}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment