rebar.config 748 B

1234567891011121314151617181920212223242526272829303132
  1. %% -*- erlang -*-
  2. {erl_opts, [
  3. warnings_as_errors,
  4. warn_export_all,
  5. warn_untyped_record,
  6. native,
  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}.
  24. {deps,
  25. [
  26. %% {edown, ".*", {git, "git://github.com/sile/edown.git", {branch, "master"}}}
  27. ]}.