Packages
ipregistry
1.0.0
Official Erlang client library for the Ipregistry IP geolocation and threat data API
Current section
Files
Jump to
Current section
Files
ipregistry
rebar.config
rebar.config
{erl_opts, [debug_info, warnings_as_errors]}.
{deps, []}.
{minimum_otp_vsn, "27"}.
{project_plugins, [erlfmt, rebar3_ex_doc, rebar3_hex]}.
{erlfmt, [
write,
{files, ["src/*.{erl,app.src}", "test/*.erl", "rebar.config"]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{plt_extra_apps, [inets, ssl, public_key]},
{warnings, [unmatched_returns, error_handling]}
]}.
{ex_doc, [
{extras, ["README.md", "CHANGELOG.md", "LICENSE"]},
{main, "readme"},
{source_url, "https://github.com/ipregistry/ipregistry-erlang"}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{profiles, [
{test, [
{erl_opts, [debug_info, warnings_as_errors, {d, 'TEST'}]},
{cover_enabled, true},
{cover_opts, [verbose]}
]}
]}.