rebar.config 333 B

1234567891011121314151617181920212223242526
  1. %%
  2. %% rebar configuration file (https://github.com/rebar/rebar)
  3. %%
  4. {require_min_otp_vsn, "21"}.
  5. {erl_opts, [
  6. debug_info,
  7. fail_on_warning
  8. ]
  9. }.
  10. {xref_checks, [
  11. undefined_function_calls,
  12. locals_not_used,
  13. deprecated_function_calls
  14. ]}.
  15. {xref_ignores, [
  16. ]}.
  17. {dialyzer, [
  18. {warnings, [
  19. % no_return
  20. ]}
  21. ]}.