Current section
Files
Jump to
Current section
Files
rebar.config
{minimum_otp_vsn, "27.1"}.
{erl_opts, [{i, "src"},
warnings_as_errors,
warn_export_all,
warn_unused_import]}.
{xref_checks, [undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
{dialyzer, [{warnings, [extra_return,
missing_return,
no_unknown,
unmatched_returns,
error_handling
%% overspecs,
%% underspecs,
%% specdiffs
]},
incremental,
{plt_apps, top_level_deps},
%% {plt_apps, all_apps},
{plt_location, local},
{base_plt_location, global}]}.
%% {plt_extra_apps, [cowboy, jsone, hackney, jesse]}]}.
{cover_enabled, true}.
{validate_app_modules, true}.
{project_plugins, [rebar3_efmt, rebar3_lint]}.
{elvis_output_format, colors}.
{plugins, [rebar3_hex]}.
{deps,
[{cowboy, "2.12.0"},
{gun, "2.1.0"},
{jsone, "2024.1.0", {pkg, shiguredo_jsone}},
{jesse, "2024.1.0", {pkg, shiguredo_jesse}}]}.
{profiles,
[{test,
[{plugins, [rebar3_proper]},
{deps, [{proper,
{git, "https://github.com/proper-testing/proper", {branch, "master"}}}]}]}]}.