You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 regels
1.1 KiB

10 jaren geleden
  1. %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
  2. %% ex: ts=4 sw=4 ft=erlang et
  3. %% escript_incl_extra is for internal rebar-private use only.
  4. %% Do not use outside rebar. Config interface is not stable.
  5. {escript_incl_extra, [{"priv/templates/*", "."}]}.
  6. %% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
  7. %% At the same time, their counterparts dict() and digraph() are to be
  8. %% deprecated in Erlang 18. namespaced_types option is used to select proper
  9. %% type name depending on the OTP version used.
  10. {erl_opts,
  11. [
  12. {platform_define, "^[0-9]+", namespaced_types}
  13. ]}.
  14. {xref_checks, []}.
  15. {xref_queries,
  16. [{"(XC - UC) || (XU - X - B
  17. - (\"escript\":\"foldl\"/\"3\")
  18. - (\"eunit_test\":\"function_wrapper\"/\"2\")
  19. - (\"abnfc\":\"file\"/\"2\")
  20. - (\"erlydtl\":\"compile\"/\"3\")
  21. - (\"lfe_comp\":\"file\"/\"2\")
  22. - (\"neotoma\":\"file\"/\"2\")
  23. - (\"protobuffs_compile\":\"scan_file\"/\"2\")
  24. - (\"diameter_codegen\":\"from_dict\"/\"4\")
  25. - (\"diameter_dict_util\":\"format_error\"/\"1\")
  26. - (\"diameter_dict_util\":\"parse\"/\"2\"))",
  27. []}]}.