jesse/rebar.config

49 lines
1.2 KiB
Plaintext
Raw Normal View History

%%-*- mode: erlang -*-
2016-01-23 21:30:49 +00:00
{lib_dirs,[ ".."
, "deps"
]}.
{erl_opts, [ {platform_define, "^R[0-9]+", erlang_deprecated_types}
2015-12-14 15:31:33 +00:00
%% , warn_export_all
2014-10-31 18:28:39 +00:00
, warn_export_vars
, warn_obsolete_guard
2015-12-05 23:31:05 +00:00
, warn_shadow_vars
2014-10-31 18:28:39 +00:00
, warn_untyped_record
2015-12-05 23:31:05 +00:00
, warn_unused_function
, warn_unused_import
2014-10-31 18:28:39 +00:00
, warnings_as_errors
2015-12-05 23:31:05 +00:00
, warn_unused_record
, warn_unused_vars
]}.
2016-01-23 21:30:49 +00:00
{cover_enabled, true}.
2015-12-05 23:31:05 +00:00
{cover_print_enabled, true}.
2016-01-23 21:30:49 +00:00
{xref_checks, [ fail_on_warning
, undefined_function_calls
, deprecated_function_calls
]}.
{eunit_opts, [ verbose
, { report
, {eunit_surefire, [{dir, "."}]}
}]}.
{ deps
, [ { jsx
2015-12-05 23:31:05 +00:00
, ".*"
, { git, "git://github.com/talentdeficit/jsx.git"
, {tag, "2.8.0"}
2015-12-05 23:31:05 +00:00
}
}
, { rfc3339
, ".*"
2017-01-07 22:11:50 +00:00
, { git, "git://github.com/andreineculau/rfc3339.git"
, {tag, "0.2.1-r15-compat"}
}
}
2015-12-05 23:31:05 +00:00
]}.
{escript_name, "bin/jesse"}.
{escript_emu_args, "%%! -noinput\n"}.
{escript_incl_apps, [ erts
, kernel
, stdlib
, jsx
, rfc3339
]}.