Current section
Files
Jump to
Current section
Files
rebar.config
{erl_opts, [
debug_info,
warn_export_all,
warn_export_vars,
warn_shadow_vars,
warn_obsolete_guard,
{parse_transform, lager_transform}
]}.
{xref_checks,[
undefined_function_calls,
undefined_functions,
locals_not_used,
% exports_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{relx, [
{release, {"busytone", "1.0.0"}, [busytone, lager, gun, jiffy, fs_sync, fswitch]},
{dev_mode, true},
{include_erts, false},
{extended_start_script, true},
{vm_args, "config/vm.args"},
{sys_config, "config/sys.config"}
]}.
{dialyzer, [
{warnings, [
% no_return,
% no_unused,
% no_improper_lists,
% no_fun_app,
% no_match,
% no_opaque,
% no_fail_call,
% no_contracts,
% no_behaviours,
% no_undefined_callbacks,
% unmatched_returns,
% error_handling,
% race_conditions,
% overspecs,
% underspecs,
% specdiffs
]},
{get_warnings, true},
{plt_apps, top_level_deps},
{plt_extra_apps, [
cowlib, ranch, fs_sync, fs_event, goldrush, gproc, lager
]},
{plt_location, local},
{plt_prefix, "reachme"},
{base_plt_apps, [
erts, kernel, stdlib, crypto, mnesia, asn1, compiler, eunit, hipe, inets, public_key, runtime_tools, ssl, syntax_tools, tools, edoc
]},
{base_plt_location, global},
{base_plt_prefix, "global"}
]}.
{plugins, [rebar3_hex]}.
{deps, [
{fs_sync, "1.1.2"}, fs_event, fswitch, lager, gun, jiffy, gproc
]}.