Current section
Files
Jump to
Current section
Files
rebar.config
{erl_opts, [debug_info, nowarn_export_all]}.
{deps, [telemetry]}.
{shell, [{apps, [ecron]}]}.
{profiles, [{test, [{deps, [proper]}]}]}.
{plugins, [rebar3_proper, coveralls]}.
{cover_enabled , true}.
{cover_export_enabled , true}.
{coveralls_coverdata , "_build/test/cover/*.coverdata"}. % or a string with wildcards or a list of files
{coveralls_service_name , "travis-ci"}.
{xref_warnings,true}.
{xref_extra_paths,[]}.
{xref_checks,[undefined_function_calls,undefined_functions,locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
{project_plugins, [rebar3_format, erlfmt]}.
{format, [
{files, ["src/*.erl", "include/*.hrl"]},
{formatter, erlfmt_formatter}, %% The erlfmt formatter interface.
{options, #{print_width => 120, ignore_pragma => true}} %% ...or no options at all.
]}.