rebar.config 723 B

12345678910111213141516171819202122232425262728293031
  1. %% -*- erlang -*-
  2. {erl_opts, [
  3. warnings_as_errors,
  4. warn_export_all,
  5. warn_untyped_record,
  6. inline
  7. ]}.
  8. {xref_checks, [
  9. fail_on_warning,
  10. undefined_function_calls
  11. ]}.
  12. {clean_files, [".eunit/*", "ebin/*.beam"]}.
  13. {cover_enabled, true}.
  14. {edoc_opts, [
  15. {doclet, edown_doclet},
  16. {dialyzer_specs, all},
  17. {report_missing_type, true},
  18. {report_type_mismatch, true},
  19. {pretty_print, erl_pp},
  20. {preprocess, true}
  21. ]}.
  22. {validate_app_modules, true}.
  23. {deps,
  24. [
  25. %% {edown, ".*", {git, "git://github.com/sile/edown.git", {branch, "master"}}}
  26. ]}.