rebar.config 637 B

123456789101112131415161718
  1. %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
  2. %% ex: ts=4 sw=4 ft=erlang et
  3. %% Type spec dict() is deprecated in R17 to be removed in R18 in
  4. %% preference for dict:dict(). But the fix is not compatible with <=
  5. %% R16.
  6. %% Compiler Options ============================================================
  7. {erl_opts,
  8. [{platform_define, "^[0-9]+", namespaced_types},
  9. debug_info,
  10. warnings_as_errors,
  11. inline]}.
  12. %% EUnit =======================================================================
  13. {eunit_opts,
  14. [{report, {eunit_surefire, [{dir, "."}]}}]}.
  15. {cover_enabled, true}.
  16. {cover_print_enabled, true}.