rebar.config 656 B

12345678910111213141516171819202122232425262728
  1. %% -*- erlang -*-
  2. {require_min_otp_vsn, "OTP17"}.
  3. {erl_opts, [
  4. warnings_as_errors,
  5. warn_export_all,
  6. warn_untyped_record,
  7. inline
  8. ]}.
  9. {xref_checks, [
  10. fail_on_warning,
  11. undefined_function_calls
  12. ]}.
  13. {clean_files, [".eunit/*", "ebin/*.beam"]}.
  14. {cover_enabled, true}.
  15. {edoc_opts, [
  16. {doclet, edown_doclet},
  17. {dialyzer_specs, all},
  18. {report_missing_type, true},
  19. {report_type_mismatch, true},
  20. {pretty_print, erl_pp},
  21. {preprocess, true}
  22. ]}.
  23. {validate_app_modules, true}.