rebar.config 773 B

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