rewrite from lager
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

45 wiersze
1.2 KiB

4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
  1. {erl_opts, [
  2. {lager_extra_sinks, ['__lager_test_sink']},
  3. {platform_define, "^(19|20|21|22)", test_statem},
  4. {platform_define, "^18", 'FUNCTION_NAME', unavailable},
  5. {platform_define, "^18", 'FUNCTION_ARITY', 0},
  6. debug_info,
  7. report,
  8. verbose,
  9. warn_deprecated_function,
  10. warn_deprecated_type,
  11. warn_export_all,
  12. warn_export_vars,
  13. warn_obsolete_guard,
  14. warn_untyped_record,
  15. warn_unused_import
  16. % do NOT include warnings_as_errors, as rebar includes these options
  17. % when compiling for eunit, and at least one test module has code that
  18. % is deliberatly broken and will generate an un-maskable warning
  19. ]}.
  20. {erl_first_files, ["src/lager_util.erl"]}.
  21. {eunit_opts, [verbose]}.
  22. {eunit_compile_opts, [
  23. export_all,
  24. nowarn_untyped_record,
  25. nowarn_export_all
  26. ]}.
  27. {deps, [
  28. {eGbh, ".*", {git, "http://192.168.0.88:53000/SisMaker/eGbh.git", {branch, "master"}}},
  29. {goldrush, "0.1.9"}
  30. ]}.
  31. {shell, [
  32. % {config, "config/sys.config"},
  33. {apps, [eRum]}
  34. ]}.
  35. {xref_checks, []}.
  36. {xref_queries, [{"(XC - UC) || (XU - X - B - lager_default_tracer : Mod - erlang:\"(is_map|map_size)\"/1 - maps:to_list/1)", []}]}.
  37. {cover_enabled, true}.
  38. {edoc_opts, [{stylesheet_file, "./priv/edoc.css"}]}.