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.

46 wiersze
1.6 KiB

  1. %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
  2. %% ex: ts=4 sw=4 ft=erlang et
  3. {rebar_packages_url, "http://localhost:8080"}.
  4. %% escript_incl_extra is for internal rebar-private use only.
  5. %% Do not use outside rebar. Config interface is not stable.
  6. {escript_incl_extra, [{"priv/templates/*", "."}]}.
  7. {escript_incl_apps,
  8. [inets, getopt, erlydtl, erlware_commons, relx]}.
  9. {escript_top_level_app, rebar}.
  10. {escript_name, rebar3}.
  11. %% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
  12. %% At the same time, their counterparts dict() and digraph() are to be
  13. %% deprecated in Erlang 18. namespaced_types option is used to select proper
  14. %% type name depending on the OTP version used.
  15. {erl_opts,
  16. [
  17. {platform_define, "^[0-9]+", namespaced_types}
  18. ]}.
  19. {xref_checks, []}.
  20. {xref_queries,
  21. [{"(XC - UC) || (XU - X - B
  22. - (\"escript\":\"foldl\"/\"3\")
  23. - (\"eunit_test\":\"function_wrapper\"/\"2\")
  24. - (\"abnfc\":\"file\"/\"2\")
  25. - (\"erlydtl\":\"compile\"/\"3\")
  26. - (\"lfe_comp\":\"file\"/\"2\")
  27. - (\"neotoma\":\"file\"/\"2\")
  28. - (\"protobuffs_compile\":\"scan_file\"/\"2\")
  29. - (\"diameter_codegen\":\"from_dict\"/\"4\")
  30. - (\"diameter_dict_util\":\"format_error\"/\"1\")
  31. - (\"diameter_dict_util\":\"parse\"/\"2\"))",
  32. []}]}.
  33. {first_files, [rebar_provider]}.
  34. {deps, [{relx, "",
  35. {git, "https://github.com/erlware/relx.git",
  36. {branch, "master"}}},
  37. {getopt, "", {git, "git@github.com:jcomellas/getopt.git", {branch, "master"}}}]}.
  38. {erlydtl_opts, [{doc_root, "priv/templates"},
  39. {compiler_options, [report, return, debug_info]}]}.