rebar.config 707 B

123456789101112131415161718192021222324252627282930
  1. %% -*- erlang -*-
  2. {erl_opts, [
  3. warnings_as_errors,
  4. warn_export_all,
  5. warn_untyped_record
  6. ]}.
  7. {xref_checks, [
  8. fail_on_warning,
  9. undefined_function_calls
  10. ]}.
  11. {clean_files, [".eunit/*", "ebin/*.beam"]}.
  12. {cover_enabled, true}.
  13. {edoc_opts, [
  14. {doclet, edown_doclet},
  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. % {edown, ".*", {git, "git://github.com/sile/edown.git", {branch, "master"}}}
  25. ]}.