Current section
Files
Jump to
Current section
Files
rebar.config
%%-*- mode: erlang -*-
{sub_dirs, ["rel", "deps", "include"]}.
%% rebar deps
{deps, [
{jsx, "2.8.0"},
{hackney, "1.4.8"}
]}.
%% Misc
{clean_files, [".eunit", "ebin/*.beam", "test/*.beam"]}.
%% hex.pm package manager.
{plugins, [rebar3_hex]}.
%% Erlang options
{erl_opts, [
warn_export_all,
warn_export_vars,
warn_shadow_vars,
warn_obsolete_guard,
warn_unused_import,
warnings_as_errors,
debug_info
]}.