rebar.config 696 B

12345678910111213141516171819202122232425262728293031
  1. %% -*- erlang -*-
  2. {erl_opts, [
  3. warnings_as_errors,
  4. warn_export_all,
  5. warn_untyped_record
  6. %,native
  7. % ,bin_opt_info
  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. {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", "master"}}
  26. ]}.