Packages

AMF decode/encode library

Current section

Files

Jump to
amf rebar.config
Raw

rebar.config

%% vim: set ft=erlang : -*- erlang -*-
{erl_opts,
[
warnings_as_errors,
warn_export_all,
warn_untyped_record
]}.
{xref_checks,
[fail_on_warning, undefined_function_calls]}.
{clean_files,
[".eunit/*", "ebin/*.beam"]}.
{cover_enabled, true}.
{edoc_opts,
[
{dialyzer_specs, all}, {report_missing_type, true},
{report_type_mismatch, true}, {pretty_print, erl_pp},
{preprocess, true}
]}.
{validate_app_modules, true}.
{dialyzer,
[
{warnings, [error_handling, race_conditions, unmatched_returns, unknown]},
{plt_extra_apps, [compiler]}
]}.
{shell, [{apps, [amf]}]}.
{plugins, [rebar_covertool]}.
{profiles,
[
{test,
[
{deps,
[
meck
]}
]}
]}.