Packages

High-performance BSON encoder/decoder for Erlang

Current section

Files

Jump to
ebson rebar.config
Raw

rebar.config

{erl_opts, [
debug_info,
warnings_as_errors,
warn_unused_vars,
warn_shadow_vars,
warn_unused_import,
warn_obsolete_guard
]}.
{deps, []}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"CHANGELOG.md", #{title => "Changelog"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/benoitc/erlang-bson"},
{source_url, "https://github.com/benoitc/erlang-bson"},
{api_reference, true}
]}.
{profiles, [
{test, [
{erl_opts, [nowarn_export_all]},
{cover_enabled, true},
{cover_opts, [verbose]}
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [
error_handling
%% underspecs - disabled due to bson_type() union type limitation
]}
]}.