diff --git a/rebar.config b/rebar.config index 99a6fe4..e92c9a2 100644 --- a/rebar.config +++ b/rebar.config @@ -1,13 +1,12 @@ {erl_opts, [debug_info, warnings_as_errors]}. -{deps, [ - {gen_smtp, "~> 1.2"} -]}. +{deps, [{gen_smtp, "~> 1.2"}]}. -{project_plugins, [ +{project_plugins, [ erlfmt, rebar3_audit, - rebar3_sbom, + {rebar3_sbom, + {git, "https://github.com/Taure/rebar3_sbom.git", {branch, "feat/include-otp-components"}}}, covertool, rebar3_hex, rebar3_ex_doc @@ -15,12 +14,7 @@ {erlfmt, [write]}. -{profiles, [ - {test, [ - {erl_opts, [nowarn_export_all]}, - {deps, []} - ]} -]}. +{profiles, [{test, [{erl_opts, [nowarn_export_all]}, {deps, []}]}]}. {xref_checks, [ undefined_function_calls, @@ -31,10 +25,7 @@ ]}. {dialyzer, [ - {warnings, [ - error_handling, - unmatched_returns - ]}, + {warnings, [error_handling, unmatched_returns]}, {plt_extra_apps, [gen_smtp, public_key]} ]}. @@ -53,11 +44,7 @@ {ex_doc, [ {source_url, <<"https://github.com/Taure/hikyaku">>}, - {extras, [ - <<"README.md">>, - <<"CHANGELOG.md">>, - <<"LICENSE">> - ]}, + {extras, [<<"README.md">>, <<"CHANGELOG.md">>, <<"LICENSE">>]}, {main, <<"README.md">>}, {homepage_url, <<"https://github.com/Taure/hikyaku">>}, {api_reference, true}