rebar.config 659 B

1234567891011121314151617181920212223242526272829303132
  1. %% -*- mode: erlang -*-
  2. {deps, [
  3. {emqx, {path, "../emqx"}},
  4. {emqx_utils, {path, "../emqx_utils"}},
  5. {emqx_bridge_http, {path, "../emqx_bridge_http"}}
  6. ]}.
  7. {edoc_opts, [{preprocess, true}]}.
  8. {erl_opts, [
  9. warn_unused_vars,
  10. warn_shadow_vars,
  11. warn_unused_import,
  12. warn_obsolete_guard,
  13. warnings_as_errors,
  14. debug_info,
  15. {parse_transform}
  16. ]}.
  17. {xref_checks, [
  18. undefined_function_calls,
  19. undefined_functions,
  20. locals_not_used,
  21. deprecated_function_calls,
  22. warnings_as_errors,
  23. deprecated_functions
  24. ]}.
  25. {cover_enabled, true}.
  26. {cover_opts, [verbose]}.
  27. {cover_export_enabled, true}.
  28. {project_plugins, [erlfmt]}.