rebar.config 684 B

123456789101112131415161718192021222324252627282930
  1. %% -*- erlang -*-
  2. {erl_opts, [
  3. warnings_as_errors,
  4. warn_export_all,
  5. warn_untyped_record,
  6. native
  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. {dialyzer_specs, all},
  16. {report_missing_type, true},
  17. {report_type_mismatch, true},
  18. {pretty_print, erl_pp},
  19. {preprocess, true}
  20. ]}.
  21. {validate_app_modules, true}.
  22. {deps,
  23. [
  24. {meck, ".*", {git, "git://github.com/eproxus/meck.git", {tag, "0.8"}}}
  25. ]}.