您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
1.1 KiB

  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 deprecated
  8. %% in Erlang 18. namespaced_types option is used to select proper type name
  9. %% depending of the OTP version used.
  10. {erl_opts, [{platform_define, "^[0-9]+", namespaced_types}, warnings_as_errors]}.
  11. {xref_checks, []}.
  12. {xref_queries,
  13. [{"(XC - UC) || (XU - X - B
  14. - (\"escript\":\"foldl\"/\"3\")
  15. - (\"eunit_test\":\"function_wrapper\"/\"2\")
  16. - (\"abnfc\":\"file\"/\"2\")
  17. - (\"erlydtl\":\"compile\"/\"3\")
  18. - (\"lfe_comp\":\"file\"/\"2\")
  19. - (\"neotoma\":\"file\"/\"2\")
  20. - (\"protobuffs_compile\":\"scan_file\"/\"2\")
  21. - (\"diameter_codegen\":\"from_dict\"/\"4\")
  22. - (\"diameter_dict_util\":\"format_error\"/\"1\")
  23. - (\"diameter_dict_util\":\"parse\"/\"2\"))",
  24. []}]}.